Skip to content

Commit

Permalink
Merge pull request educates#556 from GrahamDumpleton/lookup-service-a…
Browse files Browse the repository at this point in the history
…ctivation-url

Fix broken name for session activation URL property.
  • Loading branch information
GrahamDumpleton authored Aug 20, 2024
2 parents 8feefda + 251ca6a commit e8b50da
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 e8b50da

Please sign in to comment.