Skip to content

Commit

Permalink
Bump to pulpcore 3.49.24 (#2356)
Browse files Browse the repository at this point in the history
* Bump to pulpcore 3.49.24
* Fixup async event loop call.

No-Issue

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner authored Nov 13, 2024
1 parent 3b2dc46 commit ee22ba9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion galaxy_ng/app/tasks/namespaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _download_avatar(url, namespace_name):
' Gecko/20100101 Firefox/71.0'
}
timeout = aiohttp.ClientTimeout(total=None, sock_connect=600, sock_read=600)
conn = aiohttp.TCPConnector(force_close=True)
conn = aiohttp.TCPConnector(loop=asyncio.get_event_loop(), force_close=True)
session = aiohttp.ClientSession(
connector=conn, timeout=timeout, headers=headers, requote_redirect_url=False
)
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ pulp-container==2.19.3
# via galaxy-ng (setup.py)
pulp-glue==0.25.7
# via pulpcore
pulpcore==3.49.15
pulpcore==3.49.24
# via
# galaxy-ng (setup.py)
# pulp-ansible
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.insights.txt
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ pulp-container==2.19.3
# via galaxy-ng (setup.py)
pulp-glue==0.25.7
# via pulpcore
pulpcore==3.49.15
pulpcore==3.49.24
# via
# galaxy-ng (setup.py)
# pulp-ansible
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.standalone.txt
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ pulp-container==2.19.3
# via galaxy-ng (setup.py)
pulp-glue==0.25.7
# via pulpcore
pulpcore==3.49.15
pulpcore==3.49.24
# via
# galaxy-ng (setup.py)
# pulp-ansible
Expand Down

0 comments on commit ee22ba9

Please sign in to comment.