Merge pull request #549 from beeva-antonioirizar/remove_nexttoken_list_function

remove NextMarker in response list_functions (Lambda)
This commit is contained in:
Steve Pulec 2016-02-27 20:28:24 -05:00
commit 274a7f48a2

View File

@ -32,7 +32,7 @@ class LambdaResponse(BaseResponse):
lambda_backend = self.get_lambda_backend(full_url)
return 200, headers, json.dumps({
"Functions": [fn.get_configuration() for fn in lambda_backend.list_functions()],
"NextMarker": str(uuid.uuid4()),
# "NextMarker": str(uuid.uuid4()),
})
def _create_function(self, request, full_url, headers):