Skip to content

Commit

Permalink
Removal of debug logic
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcollom committed Nov 2, 2023
1 parent 661e96f commit 0b188e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/client/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ func (c *Client) Tags(ctx context.Context, _, repo, image string) ([]api.ImageTa
if len(result.Timestamp) > 0 {
timestamp, err = time.Parse(time.RFC3339Nano, result.Timestamp)
if err != nil {
fmt.Printf("RESULT: %+v\n", result)
return nil, fmt.Errorf("failed to parse image timestamp: %s RESULT:(%s)", err, result)
return nil, fmt.Errorf("failed to parse image timestamp: %s", err)
}
}

Expand Down

0 comments on commit 0b188e4

Please sign in to comment.