Skip to content

Commit

Permalink
feat: decrease transport_ack_timeout
Browse files Browse the repository at this point in the history
Decreasing transport_ack_timeout value for imporving the error detection
of the transport layer.

Longhorn 9874

Signed-off-by: Derek Su <[email protected]>
  • Loading branch information
derekbit committed Dec 1, 2024
1 parent 2140014 commit b2fb481
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/spdk/disk/nvme/nvme.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const (
diskCtrlrLossTimeoutSec = 30
diskReconnectDelaySec = 2
diskFastIOFailTimeoutSec = 15
diskTransportAckTimeout = 14
diskTransportAckTimeout = 10
diskKeepAliveTimeoutMs = 10000
diskMultipath = "disable"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/spdk/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const (
replicaCtrlrLossTimeoutSec = 15
replicaReconnectDelaySec = 2
replicaFastIOFailTimeoutSec = 10
replicaTransportAckTimeout = 14
replicaTransportAckTimeout = 10
replicaKeepAliveTimeoutMs = 10000
replicaMultipath = "disable"
)
Expand Down

0 comments on commit b2fb481

Please sign in to comment.