Skip to content

Commit

Permalink
Release candidate: v0.5.0-rc5 (#427)
Browse files Browse the repository at this point in the history
  • Loading branch information
odesenfans authored May 1, 2023
1 parent f8688d3 commit e35c6df
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion deployment/docker-build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ An Aleph node needs an asymmetric key pair to communicate with other nodes on th

You can generate this key using the following commands after building the Docker image:
```shell script
docker run --rm --user root --entrypoint "" -v $(pwd)/node-secret.key:/opt/pyaleph/node-secret.key alephim/pyaleph-node:v0.5.0-rc4 pyaleph --gen-keys
docker run --rm --user root --entrypoint "" -v $(pwd)/node-secret.key:/opt/pyaleph/node-secret.key alephim/pyaleph-node:v0.5.0-rc5 pyaleph --gen-keys
```

## Start the dev environment
Expand Down
4 changes: 2 additions & 2 deletions deployment/samples/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ volumes:
services:
pyaleph:
restart: always
image: alephim/pyaleph-node:v0.5.0-rc4
image: alephim/pyaleph-node:v0.5.0-rc5
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
volumes:
- ./config.yml:/opt/pyaleph/config.yml
Expand All @@ -27,7 +27,7 @@ services:

pyaleph-api:
restart: always
image: alephim/pyaleph-node:v0.5.0-rc4
image: alephim/pyaleph-node:v0.5.0-rc5
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
entrypoint: ["bash", "deployment/scripts/run_aleph_ccn_api.sh"]
ports:
Expand Down
4 changes: 2 additions & 2 deletions deployment/samples/docker-monitoring/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ volumes:
services:
pyaleph:
restart: always
image: alephim/pyaleph-node:v0.5.0-rc4
image: alephim/pyaleph-node:v0.5.0-rc5
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
volumes:
- ./config.yml:/opt/pyaleph/config.yml
Expand All @@ -29,7 +29,7 @@ services:

pyaleph-api:
restart: always
image: alephim/pyaleph-node:v0.5.0-rc4
image: alephim/pyaleph-node:v0.5.0-rc5
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
entrypoint: ["bash", "deployment/scripts/run_aleph_ccn_api.sh"]
ports:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,5 +293,5 @@


rst_epilog = """
.. |pyaleph_version| replace:: v0.5.0-rc4
.. |pyaleph_version| replace:: v0.5.0-rc5
"""
1 change: 0 additions & 1 deletion src/aleph/web/controllers/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ async def messages_ws(request: web.Request) -> web.WebSocketResponse:

# Always delete the queue, auto-delete queues are only deleted once the channel is closed
# and that's not meant to happen for the API.
# await mq_queue.purge(no_wait=True)
await mq_queue.delete(if_unused=False, if_empty=False)

return ws
Expand Down

0 comments on commit e35c6df

Please sign in to comment.