We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b0c3b9 commit 1d8bd81Copy full SHA for 1d8bd81
src/sdk/namespace_gcp.js
@@ -49,7 +49,7 @@ class NamespaceGCP {
49
private_key: this.private_key,
50
}
51
});
52
- this.gcs.createHmacKey(client_email).then((res) => {
+ this.gcs.createHmacKey(client_email).then(res => {
53
this.hmac_key = res[0];
54
this.hmac_secret = res[1];
55
@@ -479,7 +479,7 @@ class NamespaceGCP {
479
480
async get_object_tagging(params, object_sdk) {
481
dbg.log0('NamespaceGCP.get_object_tagging:', this.bucket, inspect(params));
482
- const obj_tags = (await this.read_object_md(params, object_sdk)).xattr
+ const obj_tags = (await this.read_object_md(params, object_sdk)).xattr;
483
// Converting tag dictionary to array of key-value object pairs
484
const tags = Object.entries(obj_tags).map(([key, value]) => ({ key, value }));
485
return {
0 commit comments