storage: rename getBackupPath to getBasePath

This commit is contained in:
Girish Ramakrishnan
2022-04-04 14:08:24 -07:00
parent a05e564ae6
commit 54934c41a7
6 changed files with 21 additions and 21 deletions

View File

@@ -1,7 +1,7 @@
'use strict';
exports = module.exports = {
getBackupPath,
getBasePath,
checkPreconditions,
upload,
@@ -92,7 +92,7 @@ function getS3Config(apiConfig, callback) {
}
// storage api
function getBackupPath(apiConfig) {
function getBasePath(apiConfig) {
assert.strictEqual(typeof apiConfig, 'object');
return apiConfig.prefix;