Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(api): further speed up ot3controller tests and add profiling #12132

Merged
merged 4 commits into from
Feb 10, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(api): poll much faster for module server
We start and stop a lot of module servers, and polling to see whether
they're started should be a lot faster now.
  • Loading branch information
sfoster1 committed Feb 10, 2023
commit 637116d16d1bab4ead21daf70140d6bd19ef5e94
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async def _wait_ready() -> None:
c = await ModuleStatusClient.connect(
host="localhost",
port=emulator_settings.module_server.port,
interval_seconds=1,
interval_seconds=0.1,
)
await wait_emulators(client=c, modules=modules, timeout=5)
c.close()
Expand Down