Skip to content

Commit 36622dd

Browse files
committed
increased wait time to more sensible value, half a second proved to be not enough in all cases I tried, dev or prod
1 parent d9288ee commit 36622dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ TUNNELER_PORT=sshport
8585

8686
; How long to wait, in microseconds, before testing to see if the tunnel is created.
8787
; Depending on your network speeds you will want to modify the default of .5 seconds
88-
TUNNELER_CONN_WAIT=500000
88+
TUNNELER_CONN_WAIT=1000000
8989

9090
; How often it is checked if the tunnel is created. Useful if the tunnel creation is sometimes slow,
9191
; and you want to minimize waiting times

config/tunneler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'user' => env('TUNNELER_USER'),
1919
'hostname' => env('TUNNELER_HOSTNAME'),
2020
'port' => env('TUNNELER_PORT'),
21-
'wait' => env('TUNNELER_CONN_WAIT', '500000'),
21+
'wait' => env('TUNNELER_CONN_WAIT', '1000000'),
2222
'tries' => env('TUNNELER_CONN_TRIES', 1),
2323

2424
'on_boot' => filter_var(env('TUNNELER_ON_BOOT', false), FILTER_VALIDATE_BOOLEAN),

0 commit comments

Comments
 (0)