mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
run-dev: Clarify magic number for errno.EADDRINUSE.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Anders Kaseorg
parent
fc0f73c1db
commit
13d92acdb3
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/env python3
|
||||
import argparse
|
||||
import asyncio
|
||||
import errno
|
||||
import os
|
||||
import pwd
|
||||
import signal
|
||||
@@ -359,7 +360,7 @@ async def serve() -> None:
|
||||
try:
|
||||
app.listen(proxy_port, address=options.interface)
|
||||
except OSError as e:
|
||||
if e.errno == 98:
|
||||
if e.errno == errno.EADDRINUSE:
|
||||
print("\n\nERROR: You probably have another server running!!!\n\n")
|
||||
raise
|
||||
|
||||
|
Reference in New Issue
Block a user