Don't disable process freeze in config on Windows, simply ignore setting

This commit is contained in:
timvisee
2023-01-30 17:57:49 +01:00
parent bc7bd908f6
commit 4b1857f48d
2 changed files with 1 additions and 8 deletions

View File

@@ -57,13 +57,6 @@ pub fn load(matches: &ArgMatches) -> Config {
}
};
// TODO better way to do this
#[cfg(windows)]
{
// Don't try to use unix APIs on windows
config.server.freeze_process = false;
}
config
}