rpcserver: parameterize acceptortimeout
This commit is contained in:
parent
b03c3c2df3
commit
5ab7dd89e7
@ -125,6 +125,10 @@ const (
|
|||||||
// HTLCs on our channels.
|
// HTLCs on our channels.
|
||||||
minTimeLockDelta = 4
|
minTimeLockDelta = 4
|
||||||
|
|
||||||
|
// defaultAcceptorTimeout is the time after which an RPCAcceptor will time
|
||||||
|
// out and return false if it hasn't yet received a response.
|
||||||
|
defaultAcceptorTimeout = 15 * time.Second
|
||||||
|
|
||||||
defaultAlias = ""
|
defaultAlias = ""
|
||||||
defaultColor = "#3399FF"
|
defaultColor = "#3399FF"
|
||||||
)
|
)
|
||||||
@ -252,6 +256,7 @@ type config struct {
|
|||||||
LogDir string `long:"logdir" description:"Directory to log output."`
|
LogDir string `long:"logdir" description:"Directory to log output."`
|
||||||
MaxLogFiles int `long:"maxlogfiles" description:"Maximum logfiles to keep (0 for no rotation)"`
|
MaxLogFiles int `long:"maxlogfiles" description:"Maximum logfiles to keep (0 for no rotation)"`
|
||||||
MaxLogFileSize int `long:"maxlogfilesize" description:"Maximum logfile size in MB"`
|
MaxLogFileSize int `long:"maxlogfilesize" description:"Maximum logfile size in MB"`
|
||||||
|
AcceptorTimeout time.Duration `long:"acceptortimeout" description:"Time after which an RPCAcceptor will time out and return false if it hasn't yet received a response"`
|
||||||
|
|
||||||
// We'll parse these 'raw' string arguments into real net.Addrs in the
|
// We'll parse these 'raw' string arguments into real net.Addrs in the
|
||||||
// loadConfig function. We need to expose the 'raw' strings so the
|
// loadConfig function. We need to expose the 'raw' strings so the
|
||||||
@ -370,6 +375,7 @@ func loadConfig() (*config, error) {
|
|||||||
LogDir: defaultLogDir,
|
LogDir: defaultLogDir,
|
||||||
MaxLogFiles: defaultMaxLogFiles,
|
MaxLogFiles: defaultMaxLogFiles,
|
||||||
MaxLogFileSize: defaultMaxLogFileSize,
|
MaxLogFileSize: defaultMaxLogFileSize,
|
||||||
|
AcceptorTimeout: defaultAcceptorTimeout,
|
||||||
Bitcoin: &chainConfig{
|
Bitcoin: &chainConfig{
|
||||||
MinHTLCIn: defaultBitcoinMinHTLCInMSat,
|
MinHTLCIn: defaultBitcoinMinHTLCInMSat,
|
||||||
MinHTLCOut: defaultBitcoinMinHTLCOutMSat,
|
MinHTLCOut: defaultBitcoinMinHTLCOutMSat,
|
||||||
|
14
rpcserver.go
14
rpcserver.go
@ -82,12 +82,6 @@ var (
|
|||||||
// It is set to the value under the Bitcoin chain as default.
|
// It is set to the value under the Bitcoin chain as default.
|
||||||
MaxPaymentMSat = maxBtcPaymentMSat
|
MaxPaymentMSat = maxBtcPaymentMSat
|
||||||
|
|
||||||
// defaultAcceptorTimeout is the time after which an RPCAcceptor will time
|
|
||||||
// out and return false if it hasn't yet received a response.
|
|
||||||
//
|
|
||||||
// TODO: Make this configurable
|
|
||||||
defaultAcceptorTimeout = 15 * time.Second
|
|
||||||
|
|
||||||
// readPermissions is a slice of all entities that allow read
|
// readPermissions is a slice of all entities that allow read
|
||||||
// permissions for authorization purposes, all lowercase.
|
// permissions for authorization purposes, all lowercase.
|
||||||
readPermissions = []bakery.Op{
|
readPermissions = []bakery.Op{
|
||||||
@ -5846,14 +5840,14 @@ func (r *rpcServer) ChannelAcceptor(stream lnrpc.Lightning_ChannelAcceptorServer
|
|||||||
}
|
}
|
||||||
|
|
||||||
// timeout is the time after which ChannelAcceptRequests expire.
|
// timeout is the time after which ChannelAcceptRequests expire.
|
||||||
timeout := time.After(defaultAcceptorTimeout)
|
timeout := time.After(cfg.AcceptorTimeout)
|
||||||
|
|
||||||
// Send the request to the newRequests channel.
|
// Send the request to the newRequests channel.
|
||||||
select {
|
select {
|
||||||
case newRequests <- newRequest:
|
case newRequests <- newRequest:
|
||||||
case <-timeout:
|
case <-timeout:
|
||||||
rpcsLog.Errorf("RPCAcceptor returned false - reached timeout of %d",
|
rpcsLog.Errorf("RPCAcceptor returned false - reached timeout of %d",
|
||||||
defaultAcceptorTimeout)
|
cfg.AcceptorTimeout)
|
||||||
return false
|
return false
|
||||||
case <-quit:
|
case <-quit:
|
||||||
return false
|
return false
|
||||||
@ -5862,13 +5856,13 @@ func (r *rpcServer) ChannelAcceptor(stream lnrpc.Lightning_ChannelAcceptorServer
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Receive the response and return it. If no response has been received
|
// Receive the response and return it. If no response has been received
|
||||||
// in defaultAcceptorTimeout, then return false.
|
// in AcceptorTimeout, then return false.
|
||||||
select {
|
select {
|
||||||
case resp := <-respChan:
|
case resp := <-respChan:
|
||||||
return resp
|
return resp
|
||||||
case <-timeout:
|
case <-timeout:
|
||||||
rpcsLog.Errorf("RPCAcceptor returned false - reached timeout of %d",
|
rpcsLog.Errorf("RPCAcceptor returned false - reached timeout of %d",
|
||||||
defaultAcceptorTimeout)
|
cfg.AcceptorTimeout)
|
||||||
return false
|
return false
|
||||||
case <-quit:
|
case <-quit:
|
||||||
return false
|
return false
|
||||||
|
@ -22,6 +22,11 @@
|
|||||||
; Max log file size in MB before it is rotated.
|
; Max log file size in MB before it is rotated.
|
||||||
; maxlogfilesize=10
|
; maxlogfilesize=10
|
||||||
|
|
||||||
|
; Time after which an RPCAcceptor will time out and return false if
|
||||||
|
; it hasn't yet received a response.
|
||||||
|
; acceptortimeout=15s
|
||||||
|
|
||||||
|
|
||||||
; Path to TLS certificate for lnd's RPC and REST services.
|
; Path to TLS certificate for lnd's RPC and REST services.
|
||||||
; tlscertpath=~/.lnd/tls.cert
|
; tlscertpath=~/.lnd/tls.cert
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user