Skip to content

Commit

Permalink
add SES and SDB to lambda package list
Browse files Browse the repository at this point in the history
  • Loading branch information
samoconnor committed Mar 1, 2016
1 parent 87bf2da commit 1ed1a34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AWSLambda.jl
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ macro lambda(args...)
# Split "using module" lines out of body...
modules = Expr(:block, filter(e->isa(e, Expr) && e.head == :using, body.args)...)
for m in [:AWSCore, :AWSEC2, :AWSIAM, :AWSLambda, :AWSS3, :AWSSNS, :AWSSQS,
:Retry, :SymDict, :XMLDict, :Glob, :InfoZIP]
:AWSSES, :AWSSDB, :Retry, :SymDict, :XMLDict, :Glob, :InfoZIP]
push!(modules.args, Expr(:using, m))
end

Expand Down Expand Up @@ -1020,6 +1020,7 @@ function create_jl_lambda_base(aws; release = "release-0.4")
/var/task/bin/julia -e 'Pkg.init()'
$(join(["/var/task/bin/julia -e 'Pkg.add(\"$p\")'\n" for p in pkg_list]))
#/var/task/bin/julia -e 'Pkg.checkout(\"AWSCore\", pull=true)'
#/var/task/bin/julia -e 'Pkg.checkout(\"AWSLambda\", pull=true)'
$(join(["/var/task/bin/julia -e 'using $p'\n" for p in pkg_list]))
# Copy minimal set of files to /task-staging...
Expand Down

0 comments on commit 1ed1a34

Please sign in to comment.