diff options
Diffstat (limited to 'client/client.go')
| -rw-r--r-- | client/client.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/client.go b/client/client.go index c54dd0e..64e01bd 100644 --- a/client/client.go +++ b/client/client.go @@ -841,7 +841,7 @@ func (c *Client) Cleanup(ck *cookie.Cookie) (err error) { // If we get a canceled error, return that, otherwise just log the error if err != nil { if errors.Is(err, context.Canceled) { - return i18nerr.Wrap(err, "Cleanup was canceled") + return i18nerr.Wrap(err, "The cleanup process was canceled") } log.Logger.Warningf("failed to refresh server endpoints: %v", err) @@ -902,7 +902,7 @@ func (c *Client) RenewSession(ck *cookie.Cookie) (err error) { // If we get a canceled error, return that, otherwise just log the error if err != nil { if errors.Is(err, context.Canceled) { - return i18nerr.Wrap(err, "Renewing was canceled") + return i18nerr.Wrap(err, "The renewing process was canceled") } log.Logger.Warningf("failed to refresh server endpoints: %v", err) |
