Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
07ff830e
Verified
Commit
07ff830e
authored
2 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Plain Diff
Merge branch 'dev' into f-dot-in-username
parents
1b735627
bdb2d0a3
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!66
REL: prepare release 0.8.0
,
!63
Make password and user name requirements configurable
Pipeline
#25099
passed
2 years ago
Stage: info
Stage: test
Stage: deploy
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+4
-1
4 additions, 1 deletion
CHANGELOG.md
src/main/java/org/caosdb/server/utils/FileUtils.java
+1
-1
1 addition, 1 deletion
src/main/java/org/caosdb/server/utils/FileUtils.java
with
5 additions
and
2 deletions
CHANGELOG.md
+
4
−
1
View file @
07ff830e
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/caosdb/server/utils/FileUtils.java
+
1
−
1
View file @
07ff830e
...
@@ -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
());
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment