浏览代码

remove todos

master
Jonathan Cobb 4 年前
父节点
当前提交
2ee97cac84
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. +0
    -3
      src/ssh.rs

+ 0
- 3
src/ssh.rs 查看文件

@@ -82,7 +82,6 @@ pub async fn spawn_ssh (ssh_container : Arc<Mutex<SshContainer>>,
priv_key : Arc<String>) -> Result<bool, Option<Error>> {
let mut guard = ssh_container.lock().await;
if (*guard).child.is_some() {
// todo: verify that child is still running
info!("spawn_ssh: ssh tunnel exists, not respawning");
Ok(true)
} else {
@@ -148,7 +147,6 @@ pub async fn respawn_ssh (ssh_container : Arc<Mutex<SshContainer>>,
checker_abort_handler : Arc<Mutex<AbortHandle>>) -> Result<bool, Option<Error>> {
let mut guard = ssh_container.lock().await;
if (*guard).child.is_some() {
// todo: verify that child is still running
info!("respawn_ssh: ssh tunnel exists, not respawning");
Ok(true)
} else {
@@ -306,7 +304,6 @@ async fn check_ssh (ssh_container : Arc<Mutex<SshContainer>>,
error_count = error_count + 1;
}
"deleted" => {
// todo: shutdown ssh and ourselves
debug!("check_ssh: tunnel status via {}: tunnel was deleted, stopping tunnel", check_url);
deleted = true;
}


正在加载...
取消
保存