changeset 1:d266345e510d draft default tip

planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMath commit bdeb782599ab8ec92de67e81ad092defe9edd56e
author ecology
date Wed, 10 Apr 2024 16:54:49 +0000
parents 0ed34e3202b9
children
files OTB_BandMath.R
diffstat 1 files changed, 9 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/OTB_BandMath.R	Tue Mar 12 12:39:59 2024 +0000
+++ b/OTB_BandMath.R	Wed Apr 10 16:54:49 2024 +0000
@@ -124,16 +124,13 @@
           }
         } else if (response2$status=="failed") {
           status <- "failed"
-        }
-         #else {
-         # attempt <- attempt +1
-         # if (attempt == 200) {
-         #   status <- "failed"          
-         # }
-        #}        
+          message("An error occurred. For further details, check OGC Job status through https://ospd.geolabs.fr:8300/ogc-api/jobs/", response2$jobID)
+          q(status = 1)
+        }      
       } else {
         status <- "failed"
-        print(paste("HTTP", status_code2, "Error:", resp2$status_message))
+        print(paste("HTTP", status_code2, "Error:", resp2$status_message, "An error occurred. For further details, check OGC Job status through https://ospd.geolabs.fr:8300/ogc-api/jobs/", response2$jobID))
+        q(status = 1)
       }
       Sys.sleep(3)
     }
@@ -147,4 +144,8 @@
   } else {
     print(paste("HTTP", status_code1, "Error:", resp1$status_message))
   }
+}, error = function(e) {
+  message("An error occurred:", e)
+  # Exit with code 1
+  q(status = 1)
 })
\ No newline at end of file