Skip to content

Commit

Permalink
Revert .filepart ignoring and add this feature to a dedicated branch
Browse files Browse the repository at this point in the history
  • Loading branch information
r3dlight committed Sep 29, 2023
1 parent 789e042 commit a38135c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keysas-core/src/keysas-in/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ fn send_files(files: &[String], stream: &UnixStream, sas_in: &String) -> Result<
let mut files = files.to_owned();
files.retain(|x| !re.is_match(x));
//Don't catch .ioerror reports generated by keysas-io
let re_ioerror = Regex::new(r"\.ioerror|\.filepart")?;
let re_ioerror = Regex::new(r"\.ioerror")?;
files.retain(|x| !re_ioerror.is_match(x));
//Max X files per send in .chunks(X)
for batch in files.chunks(1) {
Expand Down

0 comments on commit a38135c

Please sign in to comment.