This repository has been archived by the owner on Aug 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor config values merging (#24)
Additionally: - fix config tests
- Loading branch information
1 parent
0c8a3aa
commit 55ca927
Showing
5 changed files
with
52 additions
and
53 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,26 @@ | ||
[server] | ||
# IP address to bind HTTP server to. | ||
# | ||
# Default: | ||
# bind_ip = "0.0.0.0" | ||
|
||
# Port to bind HTTP server to. | ||
# | ||
# Default: | ||
# bind_port = 8080 | ||
|
||
|
||
|
||
|
||
[rpc] | ||
# Duration, after which remote RPC client will be considered idle if no | ||
# heartbeat messages received. | ||
# | ||
# Default: | ||
# idle_timeout = "10s" | ||
|
||
# Duration, after which the server deletes the client session if | ||
# the remote RPC client does not reconnect after it is idle. | ||
# | ||
# Default: | ||
# reconnect_timeout = "10s" |
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