Skip to content

Commit df11489

Browse files
fix validation
1 parent 85d01a4 commit df11489

File tree

1 file changed

+1
-1
lines changed
  • services/api-server/src/simcore_service_api_server/services

1 file changed

+1
-1
lines changed

services/api-server/src/simcore_service_api_server/services/director_v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ async def get_computation_logs(
187187
response.raise_for_status()
188188

189189
log_links: list[LogLink] = []
190-
for r in TypeAdapter(list[TaskLogFileGet]).validate_python(
190+
for r in TypeAdapter(list[TaskLogFileGet]).validate_json(
191191
response.text or "[]"
192192
):
193193
if r.download_link:

0 commit comments

Comments
 (0)