Skip to content

Commit

Permalink
Server: Fixed S3 connection string record in db
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent22 committed Nov 11, 2021
1 parent 4fc3bcb commit 4bfb4db
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ export default function(config: StorageDriverConfig, locationOnly: boolean = tru
items.push(`Type=${serializeType(config.type)}`);

if (config.path) items.push(`Path=${config.path}`);
if (config.region) items.push(`Region=${config.region}`);
if (config.bucket) items.push(`Bucket=${config.bucket}`);

if (!locationOnly && config.mode) items.push(`Mode=${serializeMode(config.mode)}`);

Expand Down

0 comments on commit 4bfb4db

Please sign in to comment.