patharanor commited on
Commit
933d5a4
·
1 Parent(s): 6387d98

refactor: fix metadata in put_object

Browse files
Files changed (1) hide show
  1. apis/s3.py +1 -1
apis/s3.py CHANGED
@@ -50,7 +50,7 @@ class S3:
50
  Bucket=bucket_name,
51
  Key=name,
52
  Metadata={
53
- 'x-amz-meta-x-request-id': req_id,
54
  })
55
  res.status = 200
56
  except botocore.exceptions.ClientError as error:
 
50
  Bucket=bucket_name,
51
  Key=name,
52
  Metadata={
53
+ 'x-request-id': req_id,
54
  })
55
  res.status = 200
56
  except botocore.exceptions.ClientError as error: