-
Notifications
You must be signed in to change notification settings - Fork 113
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
base: 09-11-fix_engine_fe_remove_addresses
Are you sure you want to change the base?
feat(pegboard): outbound runners #2873
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
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
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. |
236f452
to
57c4d39
Compare
4875469
to
f3087f3
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. |
57c4d39
to
e328b2d
Compare
f3087f3
to
78771e3
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.