File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
packages/libraries/sdk-rs Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ COPY --from=sdk_rs_pkg Cargo.toml /usr/src/sdk-rs/
2323COPY --from=config Cargo.lock /usr/src/router/
2424
2525# Copy usage report schema
26- # `usage .rs` uses it with the path `../../services/usage/usage-report-v2.schema.json`
26+ # `agent .rs` uses it
2727# So we need to place it accordingly
28- COPY --from=usage_service usage-report-v2.schema.json /usr/services/usage /
28+ COPY --from=usage_service usage-report-v2.schema.json /usr/src/sdk-rs /
2929
3030WORKDIR /usr/src/sdk-rs
3131# Get the dependencies cached, so we can use dummy input files so Cargo wont fail
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ pub struct ExecutionReport {
2525 pub persisted_document_hash : Option < String > ,
2626}
2727
28- typify:: import_types!( schema = "../../services/usage /usage-report-v2.schema.json" ) ;
28+ typify:: import_types!( schema = "./usage-report-v2.schema.json" ) ;
2929
3030#[ derive( Debug , Default ) ]
3131pub struct Buffer ( Mutex < VecDeque < ExecutionReport > > ) ;
Original file line number Diff line number Diff line change 1+ ../../services/usage/usage-report-v2.schema.json
You can’t perform that action at this time.
0 commit comments