Skip to content

Commit 84a7178

Browse files
committed
Style fixes
Signed-off-by: Ben <[email protected]>
1 parent 4382d3f commit 84a7178

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/sdk/object_sdk.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -462,8 +462,8 @@ class ObjectSDK {
462462
private_key,
463463
access_mode: r.access_mode,
464464
stats: this.stats,
465-
hmac_key: { access_id : r.gcp_hmac_key.access_id.unwrap(),
466-
secret_key : r.gcp_hmac_key.secret_key.unwrap() }
465+
hmac_key: { access_id: r.gcp_hmac_key.access_id.unwrap(),
466+
secret_key: r.gcp_hmac_key.secret_key.unwrap() }
467467
});
468468
}
469469
if (r.fs_root_path || r.fs_root_path === '') {

src/server/system_services/account_server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ async function add_external_connection(req) {
739739

740740
// If the connection is for Google, generate an HMAC key for S3-compatible actions (e.g. multipart uploads)
741741
if (info.endpoint_type === 'GOOGLE') {
742-
dbg.log0('add_external_connection: creating HMAC key for Google connection')
742+
dbg.log0('add_external_connection: creating HMAC key for Google connection');
743743
const key_file = JSON.parse(req.rpc_params.secret.unwrap());
744744
const credentials = _.pick(key_file, 'client_email', 'private_key');
745745
const gs_client = new GoogleStorage({ credentials, projectId: key_file.project_id });

src/server/system_services/master_key_manager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ class MasterKeysManager {
340340
encrypted_value: keys.gcp_hmac_key.secret_key,
341341
decipher: crypto.createDecipheriv(m_key.cipher_type, m_key.cipher_key, m_key.cipher_iv)
342342
}, undefined);
343-
343+
344344
}
345345
}
346346
}

0 commit comments

Comments
 (0)