diff --git a/deployment/samples/docker-compose/docker-compose.yml b/deployment/samples/docker-compose/docker-compose.yml index 69a898449..e835906ed 100644 --- a/deployment/samples/docker-compose/docker-compose.yml +++ b/deployment/samples/docker-compose/docker-compose.yml @@ -11,7 +11,7 @@ volumes: services: pyaleph: restart: always - image: alephim/pyaleph-node:0.5.7 + image: alephim/pyaleph-node:0.5.9 command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v volumes: - ./config.yml:/opt/pyaleph/config.yml @@ -30,7 +30,7 @@ services: pyaleph-api: restart: always - image: alephim/pyaleph-node:0.5.7 + image: alephim/pyaleph-node:0.5.9 command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v entrypoint: ["bash", "deployment/scripts/run_aleph_ccn_api.sh"] ports: diff --git a/docs/conf.py b/docs/conf.py index 83d04a0e0..95befd8ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -293,5 +293,5 @@ rst_epilog = """ -.. |pyaleph_version| replace:: 0.5.7 +.. |pyaleph_version| replace:: 0.5.9 """ diff --git a/pyproject.toml b/pyproject.toml index c8b64cd20..c4fba4613 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "alembic==1.12.1", "aleph-message==0.6", "aleph-nuls2==0.1", - "aleph-p2p-client @ git+https://github.com/aleph-im/p2p-service-client-python@2c04af39c566217f629fd89505ffc3270fba8676", + "aleph-p2p-client @ git+https://github.com/aleph-im/p2p-service-client-python@cbfebb871db94b2ca580e66104a67cd730c5020c", "aleph-pytezos==3.13.4", "asyncpg==0.30", "base58>=1.0.3", diff --git a/src/aleph/services/p2p/protocol.py b/src/aleph/services/p2p/protocol.py index d087edf05..d52ac1692 100644 --- a/src/aleph/services/p2p/protocol.py +++ b/src/aleph/services/p2p/protocol.py @@ -71,4 +71,4 @@ async def incoming_channel( except Exception: LOGGER.exception("Exception in pubsub, reconnecting.") - await asyncio.sleep(2) + await asyncio.sleep(0.1)