Skip to content

Commit

Permalink
fix: fix the number of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-launchdarkly committed May 10, 2024
1 parent 2a112bf commit 1bb77a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ldclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ func MakeCustomClient(sdkKey string, config Config, waitFor time.Duration) (*LDC
// your application to wait a long time before continuing execution.
if waitFor.Seconds() > highWaitForSeconds {
loggers.Warnf("Client was created was with a timeout greater than %d. "+
"We recommend a timeout of less than %d seconds", HighWaitForSeconds)
"We recommend a timeout of less than %d seconds", highWaitForSeconds, highWaitForSeconds)
}

timeout := time.After(waitFor)
Expand Down

0 comments on commit 1bb77a7

Please sign in to comment.