Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서승완
/
kappa
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Jose Diaz-Gonzalez
2016-06-12 02:19:00 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3dfe87a2d7096b3800915b719a7dab8af14994c7
3dfe87a2
1 parent
51d0e98d
Fix exception catching
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
kappa/function.py
kappa/function.py
View file @
3dfe87a
...
...
@@ -278,7 +278,7 @@ class Function(object):
try
:
LOG
.
debug
(
'tailing function:
%
s'
,
self
.
name
)
return
self
.
log
.
tail
()
except
Exception
,
e
:
except
Exception
as
e
:
if
attempt
>
10
:
return
e
...
...
Please
register
or
login
to post a comment