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
17
Merge Requests
17
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
c434c04b
Commit
c434c04b
authored
Aug 30, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proxy/db_version: prevent a ResourceWarning
parent
e3c23562
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
slapos/proxy/db_version.py
slapos/proxy/db_version.py
+2
-1
No files found.
slapos/proxy/db_version.py
View file @
c434c04b
...
...
@@ -3,5 +3,6 @@
import
pkg_resources
from
slapos.util
import
bytes2str
DB_VERSION
=
bytes2str
(
pkg_resources
.
resource_stream
(
'slapos.proxy'
,
'schema.sql'
).
readline
()).
strip
().
split
(
':'
)[
1
]
with
pkg_resources
.
resource_stream
(
'slapos.proxy'
,
'schema.sql'
)
as
f
:
DB_VERSION
=
bytes2str
(
f
.
readline
()).
strip
().
split
(
':'
)[
1
]
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