Skip to content
Snippets Groups Projects
Commit 0f110715 authored by Rick Carback's avatar Rick Carback
Browse files

Update hard time out to 45s

parent 1571dbab
No related branches found
No related tags found
No related merge requests found
......@@ -453,8 +453,8 @@ var rootCmd = &cobra.Command{
timer = time.NewTimer(dummyPeriod)
}
} else {
// Wait up to 2 minutes to receive a message
for end, timeout := false, time.After(120*time.Second); !end; {
// Wait up to 45s to receive a message
for end, timeout := false, time.After(45*time.Second); !end; {
if text.MessagesReceived > 0 {
end = true
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment