Skip to content

Commit

Permalink
Update error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
joe94 authored Feb 15, 2021
1 parent 30c65eb commit 170849f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chrysom/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ var (
errReadingBodyFailure = errors.New("failed while reading http response body")
errJSONUnmarshal = errors.New("failed unmarshaling JSON response payload")
errJSONMarshal = errors.New("failed marshaling item as JSON payload")
errListenerNotStopped = errors.New("listener is either running or being started")
errListenerNotRunning = errors.New("listener is either stopped or being stopped")
errListenerNotStopped = errors.New("listener is either running or starting")
errListenerNotRunning = errors.New("listener is either stopped or stopping")
)

// PushResult is a simple type to indicate the result type for the
Expand Down

0 comments on commit 170849f

Please sign in to comment.