Skip to content

Commit

Permalink
fix: do not send tags in header - have them in req body already
Browse files Browse the repository at this point in the history
  • Loading branch information
wkolod committed Nov 24, 2023
1 parent 2653c52 commit 4d3b1dc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/api/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,6 @@ export class ApiClient {
if (this._data) {
config.data = this._data;
}
if (this._tags) {
config.headers['x-amz-meta-tags'] = JSON.stringify(this._tags);
}
try {
const response = await axios(config);
if (isPaginated(response)) {
Expand Down

0 comments on commit 4d3b1dc

Please sign in to comment.