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

This commit is contained in:
Alex Hart
2025-12-02 14:31:38 -06:00
committed by jeffrey-signal
parent 188f1c52a9
commit f41a0f8f97
@@ -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())
}
}