Skip to content

Commit

Permalink
run policy check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenmichael committed Mar 19, 2024
1 parent 6d61e2f commit 12fa9f4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ export const shortCodeMap = {
"0x2d8": "Empty change event should not be emitted.",
"0x19d": "Handles should always have absolute paths",
"0x304": "Id cannot contain slashes",
"0x347": "this.mc and/or this.logger has not been set",
"0x07a": "Services should be there to attach delta handler",
"0x075": "SummarySerializer should be used for serializing data during summary.",
"0x078": "Possible re-entrancy! Summary should not already be in progress.",
Expand All @@ -178,6 +179,7 @@ export const shortCodeMap = {
"0x333": "PathShared.splice can only insert detached ranges",
"0x334": "Anchor must not be double freed",
"0x335": "ObjectForest.getRoot only valid for existing roots",
"0x348": "No cursors can be current when modifying forest",
"0x336": "ObjectForest must only be given its own Anchors",
"0x337": "ObjectForest must only be given its own Cursor type",
"0x338": "ObjectForest must only be given its own Cursor",
Expand Down Expand Up @@ -393,6 +395,9 @@ export const shortCodeMap = {
"0x0f3": "not positive",
"0x26c": "handler should be installed",
"0x0f4": "Nonzero pause-count on resume()",
"0x349": "reentrancy?",
"0x34a": "reentrancy?",
"0x34b": "processDeltas() should run async",
"0x2dc": "Cannot find code proposal",
"0x251": "creation summary has to have seq=0 && handle === undefined",
"0x1e0": "Protocol and App summary trees should be present",
Expand Down Expand Up @@ -570,6 +575,7 @@ export const shortCodeMap = {
"0x174": "initial states should be empty before replaying pending",
"0x2ea": "Configuration state should be enabled",
"0x2eb": "Summary not supported with configuration disabled",
"0x34c": "Refresh Summary Ack - Caller is responsible for checking lock",
"0x25b": "Caller is responsible for checking lock",
"0x25d": "We should never connect as 'read'",
"0x2ec": "Blob must be present in blobsContents",
Expand Down Expand Up @@ -698,11 +704,5 @@ export const shortCodeMap = {
"0x1ec": "No refresh token provided.",
"0x1ce": "clientId not found",
"0x1cf": "clientId not found",
"0x1d0": "sequenceNumber not found",
"0x347": "this.mc and/or this.logger has not been set",
"0x348": "No cursors can be current when modifying forest",
"0x349": "reentrancy?",
"0x34a": "reentrancy?",
"0x34b": "processDeltas() should run async",
"0x34c": "Refresh Summary Ack - Caller is responsible for checking lock"
"0x1d0": "sequenceNumber not found"
};

0 comments on commit 12fa9f4

Please sign in to comment.