Skip to content
Snippets Groups Projects
Commit a6b6e389 authored by Francesco WITZ's avatar Francesco WITZ
Browse files

fix: error in new slurm job infos retrieving route

parent 43e71973
Branches jobs
1 merge request!21Slurm job infos retrieving
Pipeline #260 passed with stages
in 19 minutes and 9 seconds
......@@ -148,7 +148,7 @@ pub fn get_infos(
Err(err) => Err((Status::InternalServerError, err.to_string()))
}
},
None => return Err((Status::NotFound, "Specified job not found".to_string()))
None => Err((Status::NotFound, "Specified job not found".to_string()))
}
},
Err(err) => Err((Status::InternalServerError, err.to_string()))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment