Skip to content

Commit

Permalink
Fix ECHILD issue.
Browse files Browse the repository at this point in the history
Signed-off-by: Klaus Ma <klausm@nvidia.com>
  • Loading branch information
k82cn committed Oct 13, 2024
1 parent 3656d99 commit 308617e
Show file tree
Hide file tree
Showing 12 changed files with 217 additions and 53 deletions.
220 changes: 187 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sys = {path = "../sys"}
chariot-sys = {path = "../sys"}

tonic = { workspace = true }
tokio = { workspace = true }
Expand All @@ -21,4 +21,5 @@ async-trait = { workspace = true }
toml = { workspace = true }
stdng = { workspace = true }

nix = { version = "0.29" , features = ["sched"]}
nix = { version = "0.29" , features = ["sched", "fs", "signal"]}
oci-spec = "0.7.0"
2 changes: 1 addition & 1 deletion agent/src/cmd/init/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

use sys::ChariotResult;
use chariot_sys::ChariotResult;

pub async fn run() -> ChariotResult<()> {
Ok(())
Expand Down
Loading

0 comments on commit 308617e

Please sign in to comment.