Skip to content

Commit 98b191d

Browse files
review @pcrespov
1 parent 6e85d35 commit 98b191d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

services/web/server/src/simcore_service_webserver/notifications/wallet_osparc_credits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async def subscribe(app: web.Application, wallet_id: WalletID) -> None:
3131
async def unsubscribe(app: web.Application, wallet_id: WalletID) -> None:
3232

3333
async with app[APP_WALLET_SUBSCRIPTION_LOCK_KEY]:
34-
counter = app[APP_WALLET_SUBSCRIPTIONS_KEY].get(wallet_id, 0)
34+
counter = app[APP_WALLET_SUBSCRIPTIONS_KEY][wallet_id]
3535
if counter > 0:
3636
app[APP_WALLET_SUBSCRIPTIONS_KEY][wallet_id] -= 1
3737

services/web/server/src/simcore_service_webserver/projects/_controller/nodes_rest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ async def patch_project_node(request: web.Request) -> web.Response:
178178
path_params = parse_request_path_parameters_as(NodePathParams, request)
179179
node_patch = await parse_request_body_as(NodePatch, request)
180180

181-
# MD: Here is the issue
182181
await _projects_service.patch_project_node(
183182
request.app,
184183
product_name=req_ctx.product_name,

0 commit comments

Comments
 (0)