@fluidframework/container-loader 2.10.0-304831 → 2.10.0-306579

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.
package/.eslintrc.cjs CHANGED
@@ -8,6 +8,9 @@ module.exports = {
8
8
  parserOptions: {
9
9
  project: ["./tsconfig.json", "./src/test/tsconfig.json"],
10
10
  },
11
+ rules: {
12
+ "@fluid-internal/fluid/no-unchecked-record-access": "warn",
13
+ },
11
14
  overrides: [
12
15
  {
13
16
  // Rules only for test files
package/dist/container.js CHANGED
@@ -444,7 +444,7 @@ class Container extends internal_5.EventEmitterWithErrorHandling {
444
444
  };
445
445
  const createAttachmentSummary = (redirectTable) => {
446
446
  try {
447
- (0, internal_2.assert)(this.deltaManager.inbound.length === 0, 0x0d6 /* "Inbound queue should be empty when attaching" */);
447
+ (0, internal_2.assert)(this._deltaManager.inbound.length === 0, 0x0d6 /* "Inbound queue should be empty when attaching" */);
448
448
  return (0, utils_js_1.combineAppAndProtocolSummary)(this.runtime.createSummary(redirectTable), this.captureProtocolSummary());
449
449
  }
450
450
  catch (error) {
@@ -930,12 +930,12 @@ class Container extends internal_5.EventEmitterWithErrorHandling {
930
930
  async processCodeProposal() {
931
931
  const codeDetails = this.getCodeDetailsFromQuorum();
932
932
  await Promise.all([
933
- this.deltaManager.inbound.pause(),
934
- this.deltaManager.inboundSignal.pause(),
933
+ this._deltaManager.inbound.pause(),
934
+ this._deltaManager.inboundSignal.pause(),
935
935
  ]);
936
936
  if ((await this.satisfies(codeDetails)) === true) {
937
- this.deltaManager.inbound.resume();
938
- this.deltaManager.inboundSignal.resume();
937
+ this._deltaManager.inbound.resume();
938
+ this._deltaManager.inboundSignal.resume();
939
939
  return;
940
940
  }
941
941
  // pre-0.58 error message: existingContextDoesNotSatisfyIncomingProposal