Add server_api parameters.
(self, command: MutableMapping[str, Any])
| 594 | client._send_cluster_time(command, session) |
| 595 | |
| 596 | def add_server_api(self, command: MutableMapping[str, Any]) -> None: |
| 597 | """Add server_api parameters.""" |
| 598 | if self.opts.server_api: |
| 599 | _add_to_command(command, self.opts.server_api) |
| 600 | |
| 601 | def update_last_checkin_time(self) -> None: |
| 602 | self.last_checkin_time = time.monotonic() |
no test coverage detected