You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!responseEtag.empty() && responseEtag != hfh.etag) {
235
+
throwHTTPException(response, "ETag was initially %s and now it returned %s, this likely means the remote file has changed.\nTry to restart the read or close the file-handle and read the file again (e.g. `DETACH` in the file is a database file).\nYou can disable checking etags via `SET unsafe_disable_etag_checks = true;`", hfh.etag, response.GetHeaderValue("ETag"));
236
+
}
237
+
}
238
+
239
+
240
+
229
241
if (response.HasHeader("Content-Length")) {
230
242
auto content_length = stoll(response.GetHeaderValue("Content-Length"));
0 commit comments