Skip to content

Commit 032f744

Browse files
committed
bof
1 parent bbc1e66 commit 032f744

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/web/server/src/simcore_service_webserver/projects/_projects_service.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1383,13 +1383,13 @@ async def _get_node_share_state(
13831383

13841384
if isinstance(service, DynamicServiceGet | NodeGet):
13851385
# service is running
1386-
collaborative_service = False
1386+
is_collaborative_service = False
13871387
if isinstance(service, DynamicServiceGet):
13881388
# only dynamic-sidecar powered services can be collaborative
1389-
collaborative_service = service.is_collaborative
1389+
is_collaborative_service = service.is_collaborative
13901390

13911391
return NodeShareState(
1392-
locked=not collaborative_service,
1392+
locked=not is_collaborative_service,
13931393
current_user_groupids=[
13941394
await users_service.get_user_primary_group_id(
13951395
app, TypeAdapter(UserID).validate_python(service.user_id)

0 commit comments

Comments
 (0)