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-05-24 17:06:54 -0400
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
9a7e110e2dfb4e62a41086b9cd8d95276840a6bd
9a7e110e
2 parents
e5f0b0f5
5c4e9eff
Merge pull request #58 from josegonzalez/patch-1
Add vpc_config to md5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
kappa/function.py
kappa/function.py
View file @
9a7e110
...
...
@@ -190,6 +190,7 @@ class Function(object):
m
.
update
(
str
(
self
.
memory_size
)
.
encode
(
'utf-8'
))
m
.
update
(
self
.
_context
.
exec_role_arn
.
encode
(
'utf-8'
))
m
.
update
(
str
(
self
.
timeout
)
.
encode
(
'utf-8'
))
m
.
update
(
str
(
self
.
vpc_config
)
.
encode
(
'utf-8'
))
config_md5
=
m
.
hexdigest
()
cached_md5
=
self
.
_context
.
get_cache_value
(
'config_md5'
)
LOG
.
debug
(
'config_md5:
%
s'
,
config_md5
)
...
...
Please
register
or
login
to post a comment