(port)
| 3561 | |
| 3562 | |
| 3563 | def start_mongocryptd(port) -> None: |
| 3564 | args = ["mongocryptd", f"--port={port}", "--idleShutdownTimeoutSecs=60"] |
| 3565 | _spawn_daemon(args) |
| 3566 | |
| 3567 | |
| 3568 | @unittest.skipIf(os.environ.get("TEST_CRYPT_SHARED"), "crypt_shared lib is installed") |