Skip to content

Commit 8f1d8e1

Browse files
committed
Increase the number of active streams from 2 to 5
1 parent 2bf04ec commit 8f1d8e1

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/giant-mice-cheer.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"trigger.dev": patch
3+
---
4+
5+
Increase the number of active streams from 2 to 5, total streams from 5 to 10

packages/core/src/v3/runMetadata/manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { RunMetadataManager } from "./types.js";
66
import { MetadataStream } from "./metadataStream.js";
77
import { ApiClient } from "../apiClient/index.js";
88

9-
const MAXIMUM_ACTIVE_STREAMS = 2;
10-
const MAXIMUM_TOTAL_STREAMS = 5;
9+
const MAXIMUM_ACTIVE_STREAMS = 5;
10+
const MAXIMUM_TOTAL_STREAMS = 10;
1111

1212
export class StandardMetadataManager implements RunMetadataManager {
1313
private flushTimeoutId: NodeJS.Timeout | null = null;

0 commit comments

Comments
 (0)