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 e5374dd commit d1eaaf1Copy full SHA for d1eaaf1
packages/core/src/v3/runMetadata/manager.ts
@@ -37,7 +37,12 @@ export class StandardMetadataManager implements RunMetadataManager {
37
this.activeStreams.clear();
38
this.store = undefined;
39
this.runId = undefined;
40
- this.flushTimeoutId = null;
+
41
+ if (this.flushTimeoutId) {
42
+ clearTimeout(this.flushTimeoutId);
43
+ this.flushTimeoutId = null;
44
+ }
45
46
this.isFlushing = false;
47
}
48
0 commit comments