-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: iroh start service set construction (#522)
also, use a BTreeSet for services, makes output deterministic
- Loading branch information
Showing
5 changed files
with
74 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
``` | ||
$ iroh start | ||
[38;5;10mAll iroh daemons are already running. all systems normal.[39m | ||
|
||
$ iroh status | ||
[1mService Number Status | ||
[0mgateway 1/1 [38;5;10mServing[39m | ||
p2p 1/1 [38;5;10mServing[39m | ||
store 1/1 [38;5;10mServing[39m | ||
|
||
$ iroh stop | ||
[38;5;15miroh-gateway is already stopped[39m | ||
[38;5;15miroh-p2p is already stopped[39m | ||
[38;5;15miroh-store is already stopped[39m | ||
|
||
``` |