-
-
Notifications
You must be signed in to change notification settings - Fork 725
re2: dev runs work without worker groups, fixed some type issues #1756
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,14 +58,14 @@ export type TriggerParams = { | |
sdkVersion?: string; | ||
cliVersion?: string; | ||
concurrencyKey?: string; | ||
masterQueue: string; | ||
masterQueue?: string; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify that all consumers of masterQueue handle undefined values Making 🏁 Script executed: #!/bin/bash
# Description: Find all uses of masterQueue from TriggerParams to verify they handle undefined values
# Look for usages of TriggerParams.masterQueue
rg -A 3 -B 3 "\bmasterQueue\b" --glob "*.ts" | grep -v "masterQueue\?:" Length of output: 63436 Action: Audit and add safeguards for masterQueue usage The field
Although the tests haven’t reported runtime errors so far, these unchecked usages could lead to subtle bugs when • Ensure that methods consuming |
||
queueName: string; | ||
queue?: QueueOptions; | ||
isTest: boolean; | ||
delayUntil?: Date; | ||
queuedAt?: Date; | ||
maxAttempts?: number; | ||
taskEventStore: string; | ||
taskEventStore?: string; | ||
priorityMs?: number; | ||
ttl?: string; | ||
tags: { id: string; name: string }[]; | ||
|
Uh oh!
There was an error while loading. Please reload this page.