Throw a retry error if we get an execution error while processing one-time donations.

This commit is contained in:
Alex Hart
2025-12-01 17:03:05 -04:00
committed by jeffrey-signal
parent 188f1c52a9
commit f41a0f8f97

View File

@@ -183,7 +183,8 @@ class InAppPaymentOneTimeContextJob private constructor(
throw IOException("Could not validate credential.")
}
} else {
info("Encountered a retryable error", serviceResponse.executionError.orNull())
warning("Encountered a retryable error", serviceResponse.executionError.orNull())
throw InAppPaymentRetryException(serviceResponse.executionError.orNull())
}
}