diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1696e44d99..e41d1108cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -195,5 +195,7 @@ jobs: path: target/x86_64-unknown-linux-musl/release - run: chmod +x target/x86_64-unknown-linux-musl/release/conmonrs - run: .github/install-deps + - name: create symlink + run: sudo ln -f -s $GOROOT/bin/* /usr/bin/ - name: Integration tests run: RUNTIME_PATH="/usr/sbin/runc" make integration-static diff --git a/conmon-rs/server/src/oom_watcher.rs b/conmon-rs/server/src/oom_watcher.rs index 6085be072d..cfac20d2e7 100644 --- a/conmon-rs/server/src/oom_watcher.rs +++ b/conmon-rs/server/src/oom_watcher.rs @@ -166,7 +166,7 @@ impl OOMWatcher { let (mut watcher, mut rx) = Self::async_watcher()?; debug!( - "{}:watching oom path {}", + "{}: watching oom path {}", pid, memory_events_file_path.display() );