This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new d832734a131 CAMEL-21740: added error handling for corrupt replay ids
(#17153)
d832734a131 is described below
commit d832734a131fd80a3530af6b974699c650de956b
Author: jubar <[email protected]>
AuthorDate: Sun Feb 16 11:12:08 2025 +0100
CAMEL-21740: added error handling for corrupt replay ids (#17153)
---
.../camel/component/salesforce/internal/client/PubSubApiClient.java | 6 ++++++
1 file changed, 6 insertions(+)
diff --git
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/PubSubApiClient.java
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/PubSubApiClient.java
index 887f4c9e7b4..e500e7c9c4c 100644
---
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/PubSubApiClient.java
+++
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/PubSubApiClient.java
@@ -73,6 +73,7 @@ public class PubSubApiClient extends ServiceSupport {
public static final String PUBSUB_ERROR_AUTH_ERROR =
"sfdc.platform.eventbus.grpc.service.auth.error";
private static final String PUBSUB_ERROR_AUTH_REFRESH_INVALID =
"sfdc.platform.eventbus.grpc.service.auth.refresh.invalid";
+ private static final String PUBSUB_ERROR_CORRUPTED_REPLAY_ID =
"sfdc.platform.eventbus.grpc.subscription.fetch.replayid.corrupted";
protected PubSubGrpc.PubSubStub asyncStub;
protected PubSubGrpc.PubSubBlockingStub blockingStub;
@@ -343,6 +344,11 @@ public class PubSubApiClient extends ServiceSupport {
session.attemptLoginUntilSuccessful(backoffIncrement, maxBackoff);
LOG.debug("logged in {}", consumer.getTopic());
}
+ case PUBSUB_ERROR_CORRUPTED_REPLAY_ID -> {
+ LOG.error("replay id is corrupt. try resubscribing
with LATEST replay preset");
+ replayId = null;
+ initialReplayPreset = ReplayPreset.LATEST;
+ }
default -> LOG.error("unexpected errorCode: {}",
errorCode);
}
}