| 1139 | |
| 1140 | |
| 1141 | class SessionAttribute(str, enum.Enum): |
| 1142 | any = 'any' |
| 1143 | primary = 'primary' |
| 1144 | standby = 'standby' |
| 1145 | prefer_standby = 'prefer-standby' |
| 1146 | read_write = "read-write" |
| 1147 | read_only = "read-only" |
| 1148 | |
| 1149 | |
| 1150 | def _accept_in_hot_standby(should_be_in_hot_standby: bool): |
no outgoing calls
no test coverage detected
searching dependent graphs…