We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d212ce commit c73e83eCopy full SHA for c73e83e
solution/src/main/kotlin/com/cosmotech/solution/azure/SolutionServiceImpl.kt
@@ -380,7 +380,8 @@ class SolutionServiceImpl(
380
381
azureStorageBlobServiceClient
382
.getBlobContainerClient(organizationId.sanitizeForAzureStorage())
383
- .getBlobClient("$solutionId/$runTemplateId/${handlerId}.zip".sanitizeForAzureStorage())
+ .getBlobClient(
384
+ "${solutionId.sanitizeForAzureStorage()}/$runTemplateId/${handlerId.value}.zip")
385
.upload(body.inputStream, body.contentLength(), overwrite)
386
387
val runTemplate = solution.runTemplates.findLast { it.id == runTemplateId }!!
0 commit comments