Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sdks/go/container/boot.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func getGoWorkerArtifactName(artifacts []*pipepb.ArtifactInformation) (string, e

switch len(artifacts) {
case 0:
return "", errors.New(fmt.Sprintf("No artifacts staged"))
return "", errors.New("no artifacts staged")
case 1:
name, _ = artifact.MustExtractFilePayload(artifacts[0])
return name, nil
Expand All @@ -139,7 +139,7 @@ func getGoWorkerArtifactName(artifacts []*pipepb.ArtifactInformation) (string, e
return n, nil
}
}
return "", errors.New(fmt.Sprintf("No artifact named '%v' found", worker))
return "", fmt.Errorf("no artifact named '%v' found", worker)
}
}

Expand All @@ -156,13 +156,13 @@ func ensureEndpointsSet(info *fnpb.ProvisionInfo) error {
}

if *loggingEndpoint == "" {
return errors.New("No logging endpoint provided.")
return errors.New("no logging endpoint provided")
}
if *artifactEndpoint == "" {
return errors.New("No artifact endpoint provided.")
return errors.New("no artifact endpoint provided")
}
if *controlEndpoint == "" {
return errors.New("No control endpoint provided.")
return errors.New("no control endpoint provided")
}

return nil
Expand Down