We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf04ec commit 8f1d8e1Copy full SHA for 8f1d8e1
.changeset/giant-mice-cheer.md
@@ -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
@@ -6,8 +6,8 @@ import { RunMetadataManager } from "./types.js";
6
import { MetadataStream } from "./metadataStream.js";
7
import { ApiClient } from "../apiClient/index.js";
8
9
-const MAXIMUM_ACTIVE_STREAMS = 2;
10
-const MAXIMUM_TOTAL_STREAMS = 5;
+const MAXIMUM_ACTIVE_STREAMS = 5;
+const MAXIMUM_TOTAL_STREAMS = 10;
11
12
export class StandardMetadataManager implements RunMetadataManager {
13
private flushTimeoutId: NodeJS.Timeout | null = null;
0 commit comments