Skip to content

Commit

Permalink
Reduce v2 kathy frequency (#3103)
Browse files Browse the repository at this point in the history
### Description

Reduces the frequency so that a message is send roughly every 5-6 hours

- [ ] Reduce alert threshld
- [ ] Deploy
  • Loading branch information
nambrot authored Jan 3, 2024
1 parent 1aeecaf commit 83ae930
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: node
on:
# Triggers the workflow on push or pull request against main
push:
branches: [main]
branches: [v2]
pull_request:
branches: [main]
branches: [v2]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const hyperlane: HelloWorldConfig = {
namespace: environment,
runConfig: {
mode: HelloWorldKathyRunMode.Service,
fullCycleTime: 1000 * 60 * 60 * 24, // every 24 hours
fullCycleTime: 1000 * 60 * 60 * 24 * 14, // every 14 days, at 9*8 messages = 72 messages is roughly every 4-5 hours
},
messageSendTimeout: 1000 * 60 * 8, // 8 min
messageReceiptTimeout: 1000 * 60 * 20, // 20 min
Expand Down

0 comments on commit 83ae930

Please sign in to comment.