Skip to content

Commit 0687c52

Browse files
committed
rename folder and clean code
1 parent c036f8f commit 0687c52

16 files changed

+1
-11
lines changed

libs/aries-basic-controller/aries_basic_controller/aries_controller.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,6 @@ async def _receive_webhook(self, request: ClientRequest):
292292
A response with status 200
293293
"""
294294
topic = request.match_info["topic"]
295-
print("WEBHOOK RECIEVED - ", topic)
296295

297296
try:
298297
payload = await request.json()
@@ -315,9 +314,7 @@ async def _handle_webhook(self, topic, payload):
315314
"""
316315
try:
317316
logging.debug(f"Handle Webhook - {topic}", payload)
318-
print(f"HANDLE WEBHOOK - {topic}")
319317
pub.sendMessage(topic, payload=payload)
320-
print(f"PUBSUB SENT - {topic}")
321318
# return web.Response(status=200)
322319
except Exception as exc:
323320
logger.warn(f"Handling webhooks failed! {exc!r} occurred when trying to handle this topic: {topic}")

tutorials/om_pki_lesson/docker-compose.yml renamed to tutorials/5. OM FoPC Course: Public Key Infrastructures/docker-compose.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ services:
2828
- ${DATAOWNER_ADMIN_PORT}:${DATAOWNER_ADMIN_PORT}
2929
networks:
3030
- indy_demo
31-
volumes:
32-
- dataowner-wallet:/home/indy/.indy_client/wallet
3331
dataowner-notebook:
3432
build:
3533
context: ../../
@@ -135,8 +133,6 @@ services:
135133
- ${DATASCIENTIST_ADMIN_PORT}:${DATASCIENTIST_ADMIN_PORT}
136134
networks:
137135
- indy_demo
138-
volumes:
139-
- datascientist-wallet:/home/indy/.indy_client/wallet
140136
datascientist-notebook:
141137
build:
142138
context: ../../
@@ -154,7 +150,4 @@ services:
154150
- ${DATASCIENTIST_WEBHOOK_PORT}:${DATASCIENTIST_WEBHOOK_PORT}
155151

156152
networks:
157-
indy_demo:
158-
volumes:
159-
datascientist-wallet:
160-
dataowner-wallet:
153+
indy_demo:

0 commit comments

Comments
 (0)