Skip to content

Commit 8fa5e8e

Browse files
committed
update requeue
1 parent dff9f14 commit 8fa5e8e

3 files changed

Lines changed: 4 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -683,20 +683,14 @@ jobs:
683683
uses: actions/setup-dotnet@v5
684684
with:
685685
dotnet-version: |
686+
9.0.x
686687
10.0.x
687688
688689
- name: Install dependencies
689690
run: dotnet restore
690691

691692
- name: GCP Tests
692-
run: dotnet test ./tests/Paramore.Brighter.Gcp.Tests/Paramore.Brighter.Gcp.Tests.csproj --filter "Category!=Spanner&Fragile!=CI" --configuration Release --logger "console;verbosity=normal" --logger GitHubActions --blame-hang-timeout 15m --blame-hang-dump-type full --blame -v n --framework net10.0
693-
694-
- name: Upload timeout blame
695-
if: always()
696-
uses: actions/upload-artifact@v7
697-
with:
698-
name: gcp-tests-timeout-blame
699-
path: tests/Paramore.Brighter.Gcp.Tests/TestResults/
693+
run: dotnet test ./tests/Paramore.Brighter.Gcp.Tests/Paramore.Brighter.Gcp.Tests.csproj --filter "Category!=Spanner&Fragile!=CI" --configuration Release --logger "console;verbosity=normal" --logger GitHubActions --blame -v n
700694

701695
# TODO: Rafael Andrade is working on how to run RocketMQ on GHA
702696
# rocketmq-ci:

tests/Paramore.Brighter.Gcp.Tests/MessagingGateway/GcpStreamMessageGatewayProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public GcpPubSubSubscription CreateSubscription(
101101
routingKey: routingKey,
102102
messagePumpType: MessagePumpType.Proactor,
103103
ackDeadlineSeconds: 60,
104-
requeueCount: 5,
104+
requeueCount: 7,
105105
deadLetter: new DeadLetterPolicy(new RoutingKey(dlqTopic), new ChannelName(dlqSub))
106106
{
107107
AckDeadlineSeconds = 60,

tests/Paramore.Brighter.Gcp.Tests/MessagingGateway/GcpStreamOrderingMessageGatewayProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public GcpPubSubSubscription CreateSubscription(
111111
routingKey: routingKey,
112112
messagePumpType: MessagePumpType.Proactor,
113113
ackDeadlineSeconds: 60,
114-
requeueCount: 5,
114+
requeueCount: 7,
115115
deadLetter: new DeadLetterPolicy(new RoutingKey(dlqTopic), new ChannelName(dlqSub))
116116
{
117117
AckDeadlineSeconds = 60,

0 commit comments

Comments
 (0)