Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion data-client/g3cmd/upload-single.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ func UploadSingle(profile string, guid string, filePath string, bucketName strin

// Instantiate interface to Gen3
gen3Interface := NewGen3Interface()
_, err := conf.ParseConfig(profile)

// done so that profileConfig is written globally
var err error
profileConfig, err = conf.ParseConfig(profile)
if err != nil {
return err
}
Expand Down
Loading