You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
for function in response_iterator:
if "NextMarker" in function:
#print(function['NextMarker'])
response_iterator = paginator.paginate(
PaginationConfig={
'StartingToken': function['NextMarker']
}
)
function_list=function['Functions']
i=0
for i in range(len(function_list)):
functionList.append(function_list[i]['FunctionName'])
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The CheckFunctionConcurrency.py only shows first 50 result, you have to use paginate to get all the function names
replace line #62 with below
paginator = client.get_paginator('list_functions')
response_iterator = paginator.paginate()
Replace the next for loop with below
for function in response_iterator:
if "NextMarker" in function:
#print(function['NextMarker'])
response_iterator = paginator.paginate(
PaginationConfig={
'StartingToken': function['NextMarker']
}
)
function_list=function['Functions']
i=0
for i in range(len(function_list)):
functionList.append(function_list[i]['FunctionName'])
The text was updated successfully, but these errors were encountered: