Skip to content

Commit

Permalink
Fix typo in node.go (#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Jan 31, 2022
1 parent 08d5ae6 commit 793fbce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/client/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ func NodeStart(ctx context.Context, runtime runtimes.Runtime, node *k3d.Node, no
if node.State.Started != "" {
ts, err := time.Parse("2006-01-02T15:04:05.999999999Z", node.State.Started)
if err != nil {
l.Log().Debugf("Failed to parse '%s.State.Started' timestamp '%s', falling back to calulated time", node.Name, node.State.Started)
l.Log().Debugf("Failed to parse '%s.State.Started' timestamp '%s', falling back to calculated time", node.Name, node.State.Started)
}
startTime = ts.Truncate(time.Second)
l.Log().Debugf("Truncated %s to %s", ts, startTime)
Expand Down

0 comments on commit 793fbce

Please sign in to comment.