Skip to content

Commit

Permalink
l
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherry committed Dec 18, 2024
1 parent bd24656 commit 9dc1f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/bootstrap/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func FetchSandboxDetails(ctx context.Context, sid, token, serverURL string) (*Sa
return nil, err
}
if resp.StatusCode == 404 {
return nil, fmt.Errorf("Sandbox not found: %s", sid)
return nil, fmt.Errorf("sandbox not found: %s", sid)
}
if resp.StatusCode != 200 {
return nil, errors.New(resp.Status)
Expand Down

0 comments on commit 9dc1f4c

Please sign in to comment.