Skip to content

Commit

Permalink
RSDK-6097 increase analyzetests connection timeout (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
abe-winter authored Dec 15, 2023
1 parent ab26a9d commit fb6f67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/analyzetests/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func mainWithArgs(ctx context.Context, args []string, logger golog.Logger) error
return nil
}

connectCtx, cancel := context.WithTimeout(ctx, 5*time.Second)
connectCtx, cancel := context.WithTimeout(ctx, 10*time.Second)
defer cancel()
client, err := mongo.NewClient(options.Client().ApplyURI(mongoURI))
if err != nil {
Expand Down

0 comments on commit fb6f67c

Please sign in to comment.