Skip to content

Commit

Permalink
aiohttp
Browse files Browse the repository at this point in the history
  • Loading branch information
gitcarbs committed Sep 19, 2024
1 parent 1b64d0e commit e02f3f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion guillotina_amqp/commands/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def run(self, arguments, settings, app):
port = arguments.port or settings.get("address", settings.get("port"))
app = web.Application()
app.router.add_get("/metrics", prometheus_view)
web.run_app(app, port=port or 8080)
web.run_app(app, port=port or 8080, loop=loop)
else:
loop.run_until_complete(self.run_worker(arguments, settings, app))

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="guillotina_amqp",
version="5.0.28",
version="5.0.29",
description="Integrate amqp into guillotina",
long_description=README,
install_requires=[
Expand Down Expand Up @@ -40,7 +40,7 @@
"prometheus-client>=0.8.0",
"mypy-zope==0.2.0",
"zope.interface==5.0.1",
"urllib3==1.26.5"
"urllib3==1.26.5",
]
},
license="BSD",
Expand Down

0 comments on commit e02f3f4

Please sign in to comment.