Skip to content
Snippets Groups Projects
Verified Commit 07ff830e authored by Timm Fitschen's avatar Timm Fitschen
Browse files

Merge branch 'dev' into f-dot-in-username

parents 1b735627 bdb2d0a3
Branches
Tags
2 merge requests!66REL: prepare release 0.8.0,!63Make password and user name requirements configurable
Pipeline #25099 passed
...@@ -17,7 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -17,7 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
* [caosdb-server#145](https://gitlab.com/caosdb/caosdb-server/-/issues/145) Searching for large numbers results in wrong results if integer values are * [caosdb-server#148](https://gitlab.com/caosdb/caosdb-server/-/issues/148)
Cannot delete file entities containing unescaped space characters
* [caosdb-server#145](https://gitlab.com/caosdb/caosdb-server/-/issues/145)
Searching for large numbers results in wrong results if integer values are
used. used.
### Security ### Security
......
...@@ -525,7 +525,7 @@ public class FileUtils { ...@@ -525,7 +525,7 @@ public class FileUtils {
} }
private static void callPosixUnlink(File file) throws IOException, InterruptedException { 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) { if (cmd.waitFor() != 0) {
throw new CaosDBException("could not unlink " + file.getAbsolutePath()); throw new CaosDBException("could not unlink " + file.getAbsolutePath());
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment