(cls, f, protocol_version)
| 1026 | |
| 1027 | @classmethod |
| 1028 | def recv_status_change(cls, f, protocol_version): |
| 1029 | # "UP" or "DOWN" |
| 1030 | change_type = read_string(f) |
| 1031 | address = read_inet(f) |
| 1032 | return dict(change_type=change_type, address=address) |
| 1033 | |
| 1034 | @classmethod |
| 1035 | def recv_schema_change(cls, f, protocol_version): |
nothing calls this directly
no test coverage detected