@fluidframework/container-runtime 2.0.0-internal.2.3.1 → 2.0.0-internal.2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/container-runtime";
9
- export const pkgVersion = "2.0.0-internal.2.3.1";
9
+ export const pkgVersion = "2.0.0-internal.2.4.0";
package/src/summarizer.ts CHANGED
@@ -160,7 +160,7 @@ export class Summarizer extends EventEmitter implements ISummarizer {
160
160
  // This will result in "summarizerClientDisconnected" stop reason recorded in telemetry,
161
161
  // unless stop() was called earlier
162
162
  this.dispose();
163
- (this.runtime.disposeFn ?? this.runtime.closeFn)()
163
+ (this.runtime.disposeFn ?? this.runtime.closeFn)();
164
164
  }
165
165
 
166
166
  private async runCore(onBehalfOf: string): Promise<SummarizerStopReason> {