Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SWATCH-2925: Prevent swatch contract service restarts on failures #3775

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions swatch-contracts/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,14 @@ mp.messaging.incoming.offering-sync-umb.connector=smallrye-amqp
mp.messaging.incoming.offering-sync-umb.address=${OFFERING_UMB_QUEUE}
mp.messaging.incoming.offering-sync-umb.client-options-name=umb
mp.messaging.incoming.offering-sync-umb.enabled=${UMB_ENABLED}
mp.messaging.incoming.offering-sync-umb.failure-strategy=ignore
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to use a different value for these consumers since they use amqp; out of the supported values, I'm inclined to just use accept as it's the closest in behavior to ignore.


mp.messaging.incoming.subscription-sync-umb.connector=smallrye-amqp
%test.mp.messaging.incoming.subscription-sync-umb.connector=smallrye-in-memory
mp.messaging.incoming.subscription-sync-umb.address=${SUBSCRIPTION_UMB_QUEUE}
mp.messaging.incoming.subscription-sync-umb.client-options-name=umb
mp.messaging.incoming.subscription-sync-umb.enabled=${UMB_ENABLED}
mp.messaging.incoming.subscription-sync-umb.failure-strategy=ignore

mp.messaging.incoming.offering-sync-task.connector=smallrye-kafka
mp.messaging.incoming.offering-sync-task.topic=platform.rhsm-subscriptions.offering-sync
Expand Down
Loading