Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
etf
cmssam
Commits
e77ff024
Commit
e77ff024
authored
Mar 01, 2007
by
ericw
Browse files
Print error message from urllib2.URLError
parent
2e1b3343
Changes
1
Hide whitespace changes
Inline
Side-by-side
SiteTests/FroNtier/tests/test_squid.py
View file @
e77ff024
...
...
@@ -10,7 +10,7 @@ Tests the local FroNtier squid
# 3) file $CMS_PATH/SITECONF/local/JobConfig/site-local-config.xml
# contains the location of the local FroNtier squid server
#
__revision__
=
"$Id: test_squid.py,v 1.
6
2007/0
2/26 17:19:25
ericw Exp $"
__revision__
=
"$Id: test_squid.py,v 1.
7
2007/0
3/01 16:07:53
ericw Exp $"
import
os
import
sys
import
urllib2
...
...
@@ -23,8 +23,7 @@ import time
#
# Print out node name
#
print
"node "
+
os
.
uname
()[
1
]
#
print
"node "
+
os
.
uname
()[
1
]
#
# Check that environmental variable SAME_OK is set
#
...
...
@@ -144,14 +143,18 @@ t1 = time.time()
#
try
:
result
=
urllib2
.
urlopen
(
request
).
read
()
except
urllib2
.
URLError
:
except
urllib2
.
URLError
,
e
:
rc
,
message
=
e
.
reason
if
site
!=
"CERN"
:
print
"test_squid.py: Error. squid "
+
squid
+
\
" is down or unreachable"
print
"test_squid.py: Error. squid "
+
squid
+
" is down, "
print
" unreachable or will not reply."
print
" "
+
message
sys
.
exit
(
same_error
)
else
:
print
"test_squid.py: Error. FroNtier server "
+
frontierUrl
+
\
" is down or unreachable"
" is down, "
print
" unreachable or will not reply."
print
" "
+
message
sys
.
exit
(
same_error
)
except
:
print
"test_squid.py: Error."
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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