Skip to content

Commit

Permalink
remove double prefix (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: dchang <[email protected]>
  • Loading branch information
mwdchang and dchang authored Jul 17, 2023
1 parent 0895c98 commit e37b8b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SimulationService.jl
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ function complete(o::OperationRequest)
return body
end

tds_url = "$(TDS_URL[])/simulations/sciml-$(o.id)/upload-url?filename=$filename"
tds_url = "$(TDS_URL[])/simulations/$(o.id)/upload-url?filename=$filename"
s3_url = get_json(tds_url).url
HTTP.put(s3_url, header; body=body)
update(o; status = "complete", completed_time = timestamp(), result_files = [s3_url])
Expand Down

0 comments on commit e37b8b5

Please sign in to comment.