Skip to content
Snippets Groups Projects

Make password and user name requirements configurable

Merged Timm Fitschen requested to merge f-dot-in-username into dev
All threads resolved!
2 files
+ 5
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -525,7 +525,7 @@ public class FileUtils {
}
private static void callPosixUnlink(File file) throws IOException, InterruptedException {
final Process cmd = Runtime.getRuntime().exec("unlink " + file.getAbsolutePath());
final Process cmd = Runtime.getRuntime().exec(new String[] {"unlink", file.getAbsolutePath()});
if (cmd.waitFor() != 0) {
throw new CaosDBException("could not unlink " + file.getAbsolutePath());
}
Loading