diff options
author | Ryan Schneider <ryanleeschneider@gmail.com> | 2018-07-31 17:16:14 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-07-31 17:16:14 +0800 |
commit | 5d7e18539e32cb4f1aafab8e977e28a7cd34da9c (patch) | |
tree | e79ed9d9659c68f7961cca6c8fa84492c49e5084 /cmd/clef | |
parent | c4a1d4fecf5efcf5095c667b7b311061173799b4 (diff) | |
download | dexon-5d7e18539e32cb4f1aafab8e977e28a7cd34da9c.tar.gz dexon-5d7e18539e32cb4f1aafab8e977e28a7cd34da9c.tar.zst dexon-5d7e18539e32cb4f1aafab8e977e28a7cd34da9c.zip |
rpc: make HTTP RPC timeouts configurable, raise defaults (#17240)
* rpc: Make HTTP server timeout values configurable
* rpc: Remove flags for setting HTTP Timeouts, configuring via .toml is sufficient.
* rpc: Replace separate constants with a single default struct.
* rpc: Update HTTP Server Read and Write Timeouts to 30s.
* rpc: Remove redundant NewDefaultHTTPTimeouts function.
* rpc: document HTTPTimeouts.
* rpc: sanitize timeout values for library use
Diffstat (limited to 'cmd/clef')
-rw-r--r-- | cmd/clef/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/clef/main.go b/cmd/clef/main.go index 348bcb22f..85704754d 100644 --- a/cmd/clef/main.go +++ b/cmd/clef/main.go @@ -415,7 +415,7 @@ func signer(c *cli.Context) error { // start http server httpEndpoint := fmt.Sprintf("%s:%d", c.String(utils.RPCListenAddrFlag.Name), c.Int(rpcPortFlag.Name)) - listener, _, err := rpc.StartHTTPEndpoint(httpEndpoint, rpcAPI, []string{"account"}, cors, vhosts) + listener, _, err := rpc.StartHTTPEndpoint(httpEndpoint, rpcAPI, []string{"account"}, cors, vhosts, rpc.DefaultHTTPTimeouts) if err != nil { utils.Fatalf("Could not start RPC api: %v", err) } |