Skip to content

Commit 64ee086

Browse files
committed
fix(backend): use correct timeout value with NATS
Related to #4308 Signed-off-by: Fatih Acar <[email protected]>
1 parent d1f1eac commit 64ee086

File tree

1 file changed

+1
-1
lines changed
  • backend/infrahub/services/adapters/message_bus

1 file changed

+1
-1
lines changed

backend/infrahub/services/adapters/message_bus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
class InfrahubMessageBus:
14-
DELIVER_TIMEOUT: int = 30
14+
DELIVER_TIMEOUT: int = 30 * 60 # 30 minutes
1515
worker_bindings: list[str] = [
1616
"check.*.*",
1717
"event.*.*",

0 commit comments

Comments
 (0)