Skip to content

Commit

Permalink
Merge pull request #3396 from justinsb/gcs_different_error_messages
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue. .

GCS: Don't reuse same error message
  • Loading branch information
Kubernetes Submit Queue committed Sep 19, 2017
2 parents 81896f7 + d257e73 commit 817f94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/pkg/vfs/gsfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (p *GSPath) ReadTree() ([]Path, error) {
if isGCSNotFound(err) {
return nil, os.ErrNotExist
}
return nil, fmt.Errorf("error listing %s: %v", p, err)
return nil, fmt.Errorf("error listing tree %s: %v", p, err)
}
return paths, nil
}
Expand Down

0 comments on commit 817f94a

Please sign in to comment.