aboutsummaryrefslogtreecommitdiff
path: root/player/instructions.f90
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2021-06-29 16:06:44 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2021-06-29 16:06:44 -0400
commitcd4a5891b8e2a019fdfda7512d6490e075628292 (patch)
tree8012dc7dc52f17632f5b429dea79709e55ab96c4 /player/instructions.f90
parentd282a7e283a1704cdde2649c7caf130fb923051a (diff)
downloadlevitating-cd4a5891b8e2a019fdfda7512d6490e075628292.tar.gz
levitating-cd4a5891b8e2a019fdfda7512d6490e075628292.zip
Tokens are now checked for file uploads. Fixed major buffer bugs in status reporting.
Diffstat (limited to 'player/instructions.f90')
-rw-r--r--player/instructions.f906
1 files changed, 6 insertions, 0 deletions
diff --git a/player/instructions.f90 b/player/instructions.f90
index 4669f18..65b392d 100644
--- a/player/instructions.f90
+++ b/player/instructions.f90
@@ -381,7 +381,10 @@ contains
end if
if(get_task_failure_okay(j, i) .and. .not. success) then
+ Print *, "Reseting to failure"
success = .true.
+ else if(.not. success) then
+ Print *, "Task failure"
end if
end function perform_task
@@ -411,6 +414,7 @@ contains
do i = 1, task_count
call get_status_url(job_id, i, url, status=STATUS_STARTING)
+ Print *, "Reporting: "//trim(url)
server_status = request_to_ignored(url)
res = perform_task(j, i, captured_filename)
@@ -444,9 +448,11 @@ contains
else
call get_status_url(job_id, i, url, status=STATUS_FAILED)
server_status = request_to_ignored(url)
+ Print *, "Attempted reporting failure"
exit
endif
end if
+
end do
call get_job_report_url(job_id, res, url)