Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update NOTICE file and fix static failures #24

Merged
merged 4 commits into from
Jan 5, 2024
Merged
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
9 changes: 9 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ Version: 1.17.30
License: Apache 2.0
Copyright 2013-2017 Amazon.com, Inc

Library: docutils
Version: 0.18
License: BSD 2
License: GPL 3.0
License: Public Domain
License: Python 2.0
Copyright 2004-2007 Chad Miller
Copyright 2011 Günter Milde,

Library: six
Version: 1.15.0
License: MIT
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Connector Version: 2.2.7
Product Vendor: AWS
Product Name: Lambda
Product Version Supported (regex): ".\*"
Minimum Product Version: 6.1.1
Minimum Product Version: 5.0.0

This app integrates with AWS Lambda to perform lambda functions

Expand Down
2 changes: 1 addition & 1 deletion awslambda.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"utctime_updated": "2022-02-04T17:14:48.000000Z",
"package_name": "phantom_awslambda",
"main_module": "awslambda_connector.py",
"min_phantom_version": "6.1.1",
"min_phantom_version": "5.0.0",
"fips_compliant": true,
"python_version": "3",
"latest_tested_versions": [
Expand Down
1 change: 1 addition & 0 deletions awslambda_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ def _sanitize_data(self, cur_obj):

def _make_boto_call(self, action_result, method, paginate=False, empty_payload=False, **kwargs):

self.debug_print('Making call to {}'.format(method))
if paginate is False:
try:
boto_func = getattr(self._client, method)
Expand Down
Loading