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 a6a6ce6 commit fe07bd4Copy full SHA for fe07bd4
livekit-rtc/livekit/rtc/rpc.py
@@ -39,6 +39,7 @@ class ErrorCode(IntEnum):
39
RECIPIENT_NOT_FOUND = 1401
40
REQUEST_PAYLOAD_TOO_LARGE = 1402
41
UNSUPPORTED_SERVER = 1403
42
+ UNSUPPORTED_VERSION = 1404
43
44
ErrorMessage: ClassVar[Dict[ErrorCode, str]] = {
45
ErrorCode.APPLICATION_ERROR: "Application error in method handler",
@@ -51,6 +52,7 @@ class ErrorCode(IntEnum):
51
52
ErrorCode.RECIPIENT_NOT_FOUND: "Recipient not found",
53
ErrorCode.REQUEST_PAYLOAD_TOO_LARGE: "Request payload too large",
54
ErrorCode.UNSUPPORTED_SERVER: "RPC not supported by server",
55
+ ErrorCode.UNSUPPORTED_VERSION: "Unsupported RPC version",
56
}
57
58
def __init__(
0 commit comments