Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
20
Merge Requests
20
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos.core
Commits
b02471cd
Commit
b02471cd
authored
Oct 02, 2019
by
Rafael Monnerat
👻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos/collect: Check if directory exists before continue
parent
2baa2125
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
slapos/collect/db.py
slapos/collect/db.py
+3
-0
No files found.
slapos/collect/db.py
View file @
b02471cd
...
...
@@ -123,6 +123,9 @@ class Database:
def
__init__
(
self
,
directory
=
None
,
create
=
True
,
timeout
=
None
):
assert
self
.
database_name
is
not
None
if
directory
.
endswith
(
self
.
database_name
):
directory
=
directory
[:
-
len
(
self
.
database_name
)]
assert
os
.
path
.
exists
(
directory
)
self
.
uri
=
os
.
path
.
join
(
directory
,
self
.
database_name
)
self
.
connection
=
None
self
.
cursor
=
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment