Skip to content

Commit b41efcb

Browse files
committed
Reduce timeout to 30 seconds
1 parent 5cf3cc5 commit b41efcb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/pkg/services/emulator_push_queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func (queue *emulatorPushQueue) Enqueue(ctx context.Context, task *PushQueueTask
5656

5757
func (queue *emulatorPushQueue) push(task PushQueueTask, queueID string) func() {
5858
return func() {
59-
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
59+
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
6060
defer cancel()
6161

6262
err := requests.

0 commit comments

Comments
 (0)