Increase timeout to 10s

monorepo
Varun Patil 2022-11-21 16:22:28 -08:00
parent 8f26483140
commit d0f1433f64
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ func (s *Stream) waitForChunk(w http.ResponseWriter, chunk *Chunk) {
// Add our channel
notif := make(chan bool)
chunk.notifs = append(chunk.notifs, notif)
t := time.NewTimer(5 * time.Second)
t := time.NewTimer(10 * time.Second)
s.mutex.Unlock()