Skip to content

Commit

Permalink
Actually use localhost for tile server
Browse files Browse the repository at this point in the history
  • Loading branch information
gjoseph92 committed Dec 1, 2021
1 parent 9ccaedf commit 2d2781e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stackstac/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ async def run():

while True:
try:
site = web.TCPSite(runner, "localhost", PORT)
site = web.TCPSite(runner, "127.0.0.1", PORT)
await site.start()
except OSError as e:
if e.errno != errno.EADDRINUSE:
Expand Down

0 comments on commit 2d2781e

Please sign in to comment.