File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ def _raise_err(
312
312
ERR_UNEXPECTED_END_OF_DATA = 5006
313
313
ERR_UNEXPECTED_XML_TYPE = 5007
314
314
ERR_TOO_MANY_CURSORS_TO_CLOSE = 5008
315
- ERR_UNKOWN_SERVER_SIDE_PIGGYBACK = 5009
315
+ ERR_UNKNOWN_SERVER_PIGGYBACK = 5009
316
316
317
317
# error numbers that result in OperationalError
318
318
ERR_LISTENER_REFUSED_CONNECTION = 6000
@@ -684,7 +684,7 @@ def _raise_err(
684
684
"format was returned"
685
685
),
686
686
ERR_UNEXPECTED_XML_TYPE : "unexpected XMLType with flag {flag}" ,
687
- ERR_UNKOWN_SERVER_SIDE_PIGGYBACK : (
687
+ ERR_UNKNOWN_SERVER_PIGGYBACK : (
688
688
"internal error: unknown server side piggyback opcode {opcode}"
689
689
),
690
690
ERR_UNSUPPORTED_INBAND_NOTIFICATION : (
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ cdef class Message:
264
264
buf.skip_ub4() # session id
265
265
buf.skip_ub2() # serial number
266
266
else :
267
- errors._raise_err(errors.ERR_UNKOWN_SERVER_SIDE_PIGGYBACK ,
267
+ errors._raise_err(errors.ERR_UNKNOWN_SERVER_PIGGYBACK ,
268
268
opcode = opcode)
269
269
270
270
cdef int _process_warning_info(self , ReadBuffer buf) except - 1 :
You can’t perform that action at this time.
0 commit comments