Skip to content

Commit

Permalink
fix format of seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
jarededwards committed Nov 19, 2024
1 parent c4a3e1b commit 0994b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func (c *Client) CreateColonyK3sContainer(ctx context.Context, loadBalancerIP, l
waitInterval := 2 * time.Second
timeout := 15 * time.Second

log.Infof("Checking for file %s every %d...", filepath.Join(pwd, constants.KubeconfigHostPath), waitInterval)
log.Infof("Checking for file %s every %d...", filepath.Join(pwd, constants.KubeconfigHostPath), waitInterval.Seconds())

err = waitUntilFileExists(log, filepath.Join(pwd, constants.KubeconfigHostPath), waitInterval, timeout)
if err != nil {
Expand Down

0 comments on commit 0994b4b

Please sign in to comment.