Skip to content

Commit

Permalink
fix: consider storage config passed in when launching sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
m-alisafaee authored and olevski committed Dec 9, 2024
1 parent b94f159 commit dc48974
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ async def storage_from_schema(
) = await config.storage_validator.get_storage_by_id(
user, internal_gitlab_user, project_id, data["storage_id"]
)
configuration = {**configuration, **(configuration or {})}
configuration = {**configuration, **(data.get("configuration", {}))}
readonly = readonly
else:
source_path = data["source_path"]
Expand Down

0 comments on commit dc48974

Please sign in to comment.