You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/codetransform/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codemodernizer/utils/CodeTransformApiUtils.kt
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,12 @@ suspend fun processClientInstructions(clientInstructionsPath: Path, jobId: JobId
252
252
getLogger<CodeModernizerManager>().info { "ResumeTransformation succeeded for job ${jobId.id}" }
253
253
} catch (e:Exception) {
254
254
getLogger<CodeModernizerManager>().error { "Upload / resume job failed for job ${jobId.id} and artifact $artifactId: $e" }
255
-
throw e
255
+
if (e.message?.contains("find a step in desired state:AWAITING_CLIENT_ACTION") ==true) {
256
+
getLogger<CodeModernizerManager>().info { "Resuming job after server-side timeout" }
0 commit comments