Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TestServer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
YAPEX
TestServer
Commits
60e4367d
Commit
60e4367d
authored
5 years ago
by
Janis Daniel Dähne
Browse files
Options
Downloads
Patches
Plain Diff
- prevent double output when the working dir could not be created
parent
d9001a4a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api.php
+1
-1
1 addition, 1 deletion
api.php
helpers.php
+5
-2
5 additions, 2 deletions
helpers.php
with
6 additions
and
3 deletions
api.php
+
1
−
1
View file @
60e4367d
...
...
@@ -263,7 +263,7 @@ $paths = ensureDirs($rootDir, $transactionKey);
if
(
$paths
===
FALSE
)
{
endTransaction
(
$conn
,
$config
,
$transactionKey
,
$rootDirName
);
output
(
$status_code_FileSystemIssue
,
"could not create dir
s
"
);
output
(
$status_code_FileSystemIssue
,
"could not create dir
(s)
"
);
exit
(
1
);
}
...
...
This diff is collapsed.
Click to expand it.
helpers.php
+
5
−
2
View file @
60e4367d
...
...
@@ -318,11 +318,14 @@ function ensureDirs($currentRootDirName, $tempUserDirName)
# use 777 so that every user can access e.g. if we use firejail with starts as another user...
if
(
mkdir
(
$fullWorkingDirPath
,
0755
,
TRUE
)
===
FALSE
)
{
# we output this in the calling method
if
(
$isDebug
)
{
# os this will throw in the frontend but this is ok for debug...
output
(
$status_code_FileSystemIssue
,
'could not create directory: '
.
$fullWorkingDirPath
);
}
else
{
output
(
$status_code_FileSystemIssue
,
'could not create directory'
);
}
#else {
# output($status_code_FileSystemIssue, 'could not create directory');
#}
#umask($old);
return
FALSE
;
...
...
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