Source-build fail: missing field 'inputs' in JobCreateInput initializer at jobs.rs:260 #24

Open
opened 2026-05-08 21:22:23 +00:00 by mik-tf · 0 comments
Owner

Source-build failure surfaced by session 80 Phase 0 sweep #2 (post-sync):

error[E0063]: missing field `inputs` in initializer of `JobCreateInput`
  --> crates/hero_codescalers_server/src/jobs.rs:260:21

Pre-sync this repo PASSED. After ff-pulling 13 behind repos to origin/development, hero_codescalers started failing because upstream JobCreateInput (likely from hero_proc / hero_rpc / hero_lib) gained a required inputs field that the server's job constructor doesn't set.

Fix: add the inputs field to the JobCreateInput { ... } initializer at crates/hero_codescalers_server/src/jobs.rs:260. Likely a single-line struct constructor update; the value is whatever an empty/default inputs should be (probably Vec::new() or Default::default()).

Reproduce: cd lhumina_code/hero_codescalers && cargo build --workspace --release.

Filed at session 80 close.

**Source-build failure** surfaced by session 80 Phase 0 sweep #2 (post-sync): ``` error[E0063]: missing field `inputs` in initializer of `JobCreateInput` --> crates/hero_codescalers_server/src/jobs.rs:260:21 ``` Pre-sync this repo PASSED. After ff-pulling 13 behind repos to `origin/development`, hero_codescalers started failing because upstream `JobCreateInput` (likely from hero_proc / hero_rpc / hero_lib) gained a required `inputs` field that the server's job constructor doesn't set. **Fix:** add the `inputs` field to the `JobCreateInput { ... }` initializer at `crates/hero_codescalers_server/src/jobs.rs:260`. Likely a single-line struct constructor update; the value is whatever an empty/default `inputs` should be (probably `Vec::new()` or `Default::default()`). Reproduce: `cd lhumina_code/hero_codescalers && cargo build --workspace --release`. Filed at session 80 close.
Sign in to join this conversation.
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
lhumina_code/hero_codescalers#24
No description provided.