File tree Expand file tree Collapse file tree 5 files changed +6
-7
lines changed
src/aleph/web/controllers Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ An Aleph node needs an asymmetric key pair to communicate with other nodes on th
3030
3131You 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
Original file line number Diff line number Diff line change 88services :
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 :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ volumes:
1010services :
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 :
Original file line number Diff line number Diff line change 293293
294294
295295rst_epilog = """
296- .. |pyaleph_version| replace:: v0.5.0-rc4
296+ .. |pyaleph_version| replace:: v0.5.0-rc5
297297"""
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments