Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos-caddy
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Guillaume Hervier
slapos-caddy
Commits
333ea2ad
Commit
333ea2ad
authored
Dec 20, 2013
by
Nicolas Wavrant
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stack-monitor: doesn't fail while reading sockets
parent
0296b20a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
stack/monitor/monitor.py.in
stack/monitor/monitor.py.in
+6
-2
No files found.
stack/monitor/monitor.py.in
View file @
333ea2ad
#!
/usr/bin/python
#!
${buildout:executable}
import datetime
import datetime
import json
import json
...
@@ -46,7 +46,11 @@ def runServices(directory):
...
@@ -46,7 +46,11 @@ def runServices(directory):
for service in services:
for service in services:
service_path = os.path.join(pid_dir, service)
service_path = os.path.join(pid_dir, service)
service_name = os.path.basename(service_path)
service_name = os.path.basename(service_path)
try:
pid = int(open(service_path).read())
pid = int(open(service_path).read())
### because apache (or others) can write sockets
except IOError:
continue
try:
try:
os.kill(pid, 0)
os.kill(pid, 0)
result[service_name] = ''
result[service_name] = ''
...
...
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