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
Matteo Sessa
2016-07-08 16:18:07 +1000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1bf4ae32aa5f423b4124a89108df27f04dca8f71
1bf4ae32
1 parent
71845998
Include environment at lambda function qualifier
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
kappa/event_source/s3.py
kappa/event_source/s3.py
View file @
1bf4ae3
...
...
@@ -37,7 +37,7 @@ class S3EventSource(kappa.event_source.base.EventSource):
{
'Id'
:
self
.
_make_notification_id
(
function
.
name
),
'Events'
:
[
e
for
e
in
self
.
_config
[
'events'
]],
'LambdaFunctionArn'
:
function
.
arn
,
'LambdaFunctionArn'
:
'
%
s:
%
s'
%
(
function
.
arn
,
function
.
_context
.
environment
)
,
}
]
}
...
...
Please
register
or
login
to post a comment