Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ phases:
post_build:
commands:
- echo "Updating lambda Function..."
- aws lambda update-function-code --function-name github-to-lambda-demo --zip-file fileb://deployment_package.zip
- aws lambda update-function-code --function-name test-devops-lamda --zip-file fileb://deployment_package.zip
- echo "DONE!!"
2 changes: 1 addition & 1 deletion lambda_function.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd

def lambda_handler(event, context):
d = {'col1': [1,2], 'col2': [3,4]}
d = {'test1': [1,2], 'test2': [3,4]}
df = pd.DataFrame(data=d)
print(df)
print('Done x1.1')