Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
fix: escape path string coming from request
Browse files Browse the repository at this point in the history
  • Loading branch information
lidel committed Mar 29, 2023
1 parent aaf9ff9 commit 206d01a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caboose.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ type ErrCoolDown struct {
}

func (e *ErrCoolDown) Error() string {
return fmt.Sprintf("multiple saturn retrieval failures seen for CID %s/Path %s, please retry after %s", e.Cid, e.Path, humanRetry(e.retryAfter))
return fmt.Sprintf("multiple saturn retrieval failures seen for CID %q / Path %q, please retry after %s", e.Cid, e.Path, humanRetry(e.retryAfter))
}

func (e *ErrCoolDown) RetryAfter() time.Duration {
Expand Down

0 comments on commit 206d01a

Please sign in to comment.