Skip to content

Commit

Permalink
Fix broken name for session activation URL property.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Aug 20, 2024
1 parent 8feefda commit 251ca6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lookup-service/service/caches/portals.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ async def reacquire_workshop_session(
"environmentName": environment_name,
"sessionName": session_name,
"clientUserId": user_id,
"sessionActionvationUrl": f"{self.portal.url}{url}",
"sessionActivationUrl": f"{self.portal.url}{url}",
}

except ClientConnectorError as exc:
Expand Down Expand Up @@ -355,7 +355,7 @@ async def request_workshop_session(
"environmentName": environment_name,
"sessionName": session_name,
"clientUserId": user_id,
"sessionActionvationUrl": f"{self.portal.url}{url}",
"sessionActivationUrl": f"{self.portal.url}{url}",
}

except ClientConnectorError as exc:
Expand Down

0 comments on commit 251ca6a

Please sign in to comment.