Skip to content
Snippets Groups Projects
Commit 6ac61093 authored by nimrod's avatar nimrod
Browse files

Increase the timeout for TCP and Unix socket checks.

The checks for open ports/ sockets was timinig out after 1 second which
isn't reasonable.
parent ca0a2e46
No related branches found
No related tags found
No related merge requests found
......@@ -115,8 +115,8 @@ alias prune_docker_remote='find ~/.ssh -maxdepth 1 -type s -name "docker_*" -del
alias close='ssh -fnNTS ~/.ssh/%C.sock -O exit'
alias jjb='jenkins-jobs'
alias diff='diff --unified'
alias check_tcp='nc -vzw1'
alias check_unix='nc -Uvzw1'
alias check_tcp='nc -vzw10'
alias check_unix='nc -Uvzw3'
alias listen_tcp='nc -vlk 0.0.0.0'
alias listen_udp='nc -uvlk 0.0.0.0'
alias listen_unix='nc -Uvlk'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment