Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume Hervier
slapos.toolbox
Commits
3c9101c8
Commit
3c9101c8
authored
9 years ago
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
equeue: unlock lockfile at boot.
parent
c05d3348
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
slapos/equeue/__init__.py
slapos/equeue/__init__.py
+2
-0
No files found.
slapos/equeue/__init__.py
View file @
3c9101c8
...
@@ -89,7 +89,9 @@ class EqueueServer(SocketServer.ThreadingUnixStreamServer):
...
@@ -89,7 +89,9 @@ class EqueueServer(SocketServer.ThreadingUnixStreamServer):
self
.
setDB
(
self
.
options
.
database
[
0
])
self
.
setDB
(
self
.
options
.
database
[
0
])
# Lock to only have one command running at the time
# Lock to only have one command running at the time
self
.
thread_lock
=
threading
.
Lock
()
self
.
thread_lock
=
threading
.
Lock
()
# Lockfile is used by other commands to know if an import is ongoing.
self
.
lockfile
=
LockFile
(
self
.
options
.
lockfile
)
self
.
lockfile
=
LockFile
(
self
.
options
.
lockfile
)
self
.
lockfile
.
break_lock
()
def
setLogger
(
self
,
logfile
,
loglevel
):
def
setLogger
(
self
,
logfile
,
loglevel
):
self
.
logger
=
logging
.
getLogger
(
"EQueue"
)
self
.
logger
=
logging
.
getLogger
(
"EQueue"
)
...
...
This diff is collapsed.
Click to expand it.
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