context and querier done

This commit is contained in:
2023-02-11 14:03:06 +01:00
parent 3b5b59ba1c
commit 52a0db3e31
2 changed files with 3 additions and 4 deletions

View File

@@ -1,4 +1,3 @@
use std::{
fs::canonicalize,
io::{BufRead, BufReader},
@@ -101,7 +100,7 @@ impl InnerCliSession {
let stderr_bufr = BufReader::new(stderr);
for line in stderr_bufr.lines() {
let out = line.unwrap();
panic!("could not start dagger session: {}", out)
//panic!("could not start dagger session: {}", out)
}
});