Skip to content

Commit

Permalink
Update error message returned when monitor fails to start
Browse files Browse the repository at this point in the history
  • Loading branch information
devzbysiu committed Dec 17, 2024
1 parent a9d3e31 commit b52effa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ var (
// ErrNotLoggedIn is returned when the caller is expected to be logged in
// but is not
ErrNotLoggedIn = errors.New("you are not logged in")
// TODO: Update message
ErrMonitorFailed = errors.New("monitor failed")
// ErrMonitorFailed is returned when nordfileshare process monitor

Check failure on line 23 in internal/errors.go

View workflow job for this annotation

GitHub Actions / lint

File is not `gofmt`-ed with `-s` (gofmt)
// fails to start during enabling meshnet
ErrMonitorFailed = errors.New("we encountered an issue activating Meshnet because one of our safety feature did not initialize correctly.")
ErrVirtualServerSelected = errors.New(SpecifiedServerIsVirtualLocation)
)

0 comments on commit b52effa

Please sign in to comment.