Increase timeout to 10s
parent
8f26483140
commit
d0f1433f64
|
@ -224,7 +224,7 @@ func (s *Stream) waitForChunk(w http.ResponseWriter, chunk *Chunk) {
|
||||||
// Add our channel
|
// Add our channel
|
||||||
notif := make(chan bool)
|
notif := make(chan bool)
|
||||||
chunk.notifs = append(chunk.notifs, notif)
|
chunk.notifs = append(chunk.notifs, notif)
|
||||||
t := time.NewTimer(5 * time.Second)
|
t := time.NewTimer(10 * time.Second)
|
||||||
|
|
||||||
s.mutex.Unlock()
|
s.mutex.Unlock()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue