Commit dca7b4f
committed
Fix blob redirect handling regression
#771 broke the redirect
handling because the redirect location returned by CrateDB includes the
full path to the blob.
E.g. `http://localhost:4202/_blobs/b1/2c2bbc39c1c8b8c217c04cf5fc0dcb23c6d93b39`
With the change in the above PR, `_server_url` retained the path and the
follow up request was made to
`http://localhost:4202/_blobs/b1/2c2b.../_blobs/b1/2c2b...`, leading to
a 404 and a BlobDigestNotFound exception.
crate-qa tests failed because of that.1 parent a116102 commit dca7b4f
2 files changed
+3
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
637 | 637 | | |
638 | 638 | | |
639 | 639 | | |
640 | | - | |
| 640 | + | |
| 641 | + | |
641 | 642 | | |
642 | 643 | | |
643 | 644 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
170 | 170 | | |
171 | 171 | | |
172 | 172 | | |
173 | | - | |
| 173 | + | |
174 | 174 | | |
175 | 175 | | |
176 | 176 | | |
| |||
0 commit comments