removed lint

This commit is contained in:
epi
2021-02-04 06:46:37 -06:00
parent 19fbbb88b4
commit d97355207c
2 changed files with 0 additions and 4 deletions

View File

@@ -154,9 +154,7 @@ impl ScanHandler {
tokio::spawn(async move {
while ferox_scans.has_active_scans() {
for scan in ferox_scans.get_active_scans() {
log::debug!("FAFAFA joining {:?}", scan);
scan.join().await;
log::debug!("FAFAFA joined {:?}", scan);
}
}
limiter_clone.close();

View File

@@ -29,8 +29,6 @@ use feroxbuster::{utils::set_open_file_limit, DEFAULT_OPEN_FILE_LIMIT};
/// Create a HashSet of Strings from the given wordlist then stores it inside an Arc
fn get_unique_words_from_wordlist(path: &str) -> Result<Arc<HashSet<String>>> {
// todo i'd like to try moving this into the handler and passing the arc into FeroxScanner to
// see how that impacts memory usage
log::trace!("enter: get_unique_words_from_wordlist({})", path);
let file = File::open(&path).with_context(|| format!("Could not open {}", path))?;