Skip to content

Commit e35c6df

Browse files
authored
Release candidate: v0.5.0-rc5 (#427)
1 parent f8688d3 commit e35c6df

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

deployment/docker-build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ An Aleph node needs an asymmetric key pair to communicate with other nodes on th
3030

3131
You can generate this key using the following commands after building the Docker image:
3232
```shell script
33-
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
33+
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
3434
```
3535

3636
## Start the dev environment

deployment/samples/docker-compose/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ volumes:
88
services:
99
pyaleph:
1010
restart: always
11-
image: alephim/pyaleph-node:v0.5.0-rc4
11+
image: alephim/pyaleph-node:v0.5.0-rc5
1212
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
1313
volumes:
1414
- ./config.yml:/opt/pyaleph/config.yml
@@ -27,7 +27,7 @@ services:
2727

2828
pyaleph-api:
2929
restart: always
30-
image: alephim/pyaleph-node:v0.5.0-rc4
30+
image: alephim/pyaleph-node:v0.5.0-rc5
3131
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
3232
entrypoint: ["bash", "deployment/scripts/run_aleph_ccn_api.sh"]
3333
ports:

deployment/samples/docker-monitoring/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ volumes:
1010
services:
1111
pyaleph:
1212
restart: always
13-
image: alephim/pyaleph-node:v0.5.0-rc4
13+
image: alephim/pyaleph-node:v0.5.0-rc5
1414
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
1515
volumes:
1616
- ./config.yml:/opt/pyaleph/config.yml
@@ -29,7 +29,7 @@ services:
2929

3030
pyaleph-api:
3131
restart: always
32-
image: alephim/pyaleph-node:v0.5.0-rc4
32+
image: alephim/pyaleph-node:v0.5.0-rc5
3333
command: --config /opt/pyaleph/config.yml --key-dir /opt/pyaleph/keys -v
3434
entrypoint: ["bash", "deployment/scripts/run_aleph_ccn_api.sh"]
3535
ports:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,5 +293,5 @@
293293

294294

295295
rst_epilog = """
296-
.. |pyaleph_version| replace:: v0.5.0-rc4
296+
.. |pyaleph_version| replace:: v0.5.0-rc5
297297
"""

src/aleph/web/controllers/messages.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ async def messages_ws(request: web.Request) -> web.WebSocketResponse:
330330

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

336335
return ws

0 commit comments

Comments
 (0)