Skip to content

Commit

Permalink
Merge pull request #316 from pixlise/feature/impersonate-user
Browse files Browse the repository at this point in the history
AWS documentdb connection fixes for mongodump/restore
  • Loading branch information
pnemere authored Sep 16, 2024
2 parents ea1df90 + 483865d commit adc4ff9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/ws/wsHelpers/sync-mongo-dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ func MakeMongoDumpInstance(mongoDetails mongoDBConnection.MongoConnectionDetails
}

auth := options.Auth{
Username: mongoDetails.User,
Password: mongoDetails.Password,
Mechanism: "DEFAULT",
Username: mongoDetails.User,
Password: mongoDetails.Password,
//Mechanism: "DEFAULT",
}

connection := &options.Connection{
Expand Down

0 comments on commit adc4ff9

Please sign in to comment.