You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/provider/provider.go
+18-3Lines changed: 18 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -78,10 +78,16 @@ var providerFlags = []cli.Flag{
78
78
},
79
79
&cli.StringFlag{
80
80
Name: "update-interval",
81
-
Aliases: []string{"ui"},
82
-
Usage: "Time to wait between distance update checks. The value is an integer string ending in s, m, h for seconds. minutes, hours. Updates will only be seen as fast as they become visible at the upstream location.",
81
+
Aliases: []string{"uin"},
82
+
Usage: "Time to wait between distance update checks when using --follow-dist. The value is an integer string ending in s, m, h for seconds. minutes, hours. Updates will only be seen as fast as they become visible at the upstream location.",
83
83
Value: "2m",
84
84
},
85
+
&cli.StringFlag{
86
+
Name: "update-timeout",
87
+
Aliases: []string{"uto"},
88
+
Usage: "Timeout for getting a provider distance, when using --follow-dist. The value is an integer string ending in s, m, h for seconds. minutes, hours.",
0 commit comments