-
Notifications
You must be signed in to change notification settings - Fork 114
feat(pegboard): outbound runners #2873
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
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Claude encountered an error —— View job I'll analyze this and get back to you. |
commit: |
91aa71d
to
a6c2ba1
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
a6c2ba1
to
efb896e
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
let namespace_id = state.namespace_id; | ||
let runner_id = state.runner_id; | ||
let ns_runner_kind = &state.ns_runner_kind; | ||
|
||
ctx.udb()? | ||
.run(|tx, _mc| async move { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The destroy::clear_slot()
function signature has been updated to include a ns_runner_kind
parameter, but this call site is missing that parameter. The function should be called with ns_runner_kind
as the fourth argument:
destroy::clear_slot(
input.actor_id,
namespace_id,
runner_name_selector,
runner_id,
ns_runner_kind, // This parameter is missing
&tx,
)
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r
8bdf226
to
fe6d7a9
Compare
efb896e
to
fc97845
Compare
78771e3
to
f3087f3
Compare
e328b2d
to
57c4d39
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
…en disconnected/reconnecting
f3087f3
to
9549b26
Compare
57c4d39
to
5ddcc85
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
Claude encountered an error —— View job I'll analyze this and get back to you. |
No description provided.