Skip to content

Commit 9036368

Browse files
AymericDufvennetier
authored andcommitted
Pass the request ID when checking the chunks
1 parent 0adbebd commit 9036368

File tree

1 file changed

+2
-1
lines changed
  • oioswift/proxy/controllers

1 file changed

+2
-1
lines changed

oioswift/proxy/controllers/obj.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ def get_object_head_resp(self, req):
280280
nb_chunks_ok = 0
281281
for entry in entries[1]:
282282
try:
283-
storage.blob_client.chunk_head(entry['url'])
283+
storage.blob_client.chunk_head(
284+
entry['url'], headers=oio_headers)
284285
nb_chunks_ok += 1
285286
except exceptions.OioException:
286287
pass

0 commit comments

Comments
 (0)