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
Eric Zheng
slapos.toolbox
Commits
b41a7aa0
Commit
b41a7aa0
authored
Dec 08, 2011
by
Antoine Catton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Factorize the code of cleanup() function.
parent
f96b495b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
18 deletions
+12
-18
slapos/equeue/__init__.py
slapos/equeue/__init__.py
+12
-18
No files found.
slapos/equeue/__init__.py
View file @
b41a7aa0
...
...
@@ -41,22 +41,16 @@ cleanup_data = {}
def
cleanup
(
signum
=
None
,
frame
=
None
):
global
cleanup_data
cleanup_functions
=
dict
(
sockets
=
lambda
sock
:
sock
.
close
(),
subprocesses
=
lambda
process
:
process
.
terminate
(),
paths
=
lambda
filename
:
os
.
unlink
(
filename
),
)
for
data
,
function
in
cleanup_functions
.
iteritems
():
for
item
in
cleanup_data
.
get
(
data
,
[]):
# Swallow everything !
# XXX-Antoine: We can see a patern on this code
# it should be factorized.
for
sock
in
cleanup_data
.
get
(
'sockets'
,
[]):
try
:
sock
.
close
()
except
:
pass
for
process
in
cleanup_data
.
get
(
'subprocesses'
,
[]):
try
:
process
.
terminate
()
except
:
pass
for
filename
in
cleanup_data
.
get
(
'paths'
,
[]):
try
:
os
.
unlink
(
filename
)
function
(
item
)
except
:
pass
...
...
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