Skip to content

Commit 53854e7

Browse files
committed
fix: cli server disable --wait
1 parent 2f6dcf6 commit 53854e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bbblb/cli/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ async def disable(obj: ServiceRegistry, domain: str, nuke: bool, wait: int):
122122
click.echo("No meetings left on server")
123123
return
124124

125-
if time.time() + interval < maxwait:
125+
if time.time() + interval > maxwait:
126126
raise RuntimeError(
127127
f"Server not empty: There are still {count} meetings running"
128128
)

0 commit comments

Comments
 (0)