remove NextMarker in response list_functions

This commit is contained in:
beeva-antonioirizar 2016-02-23 17:34:49 +01:00
parent a9d161e58e
commit 143a8f85ee

View File

@ -32,7 +32,7 @@ class LambdaResponse(BaseResponse):
lambda_backend = self.get_lambda_backend(full_url) lambda_backend = self.get_lambda_backend(full_url)
return 200, headers, json.dumps({ return 200, headers, json.dumps({
"Functions": [fn.get_configuration() for fn in lambda_backend.list_functions()], "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): def _create_function(self, request, full_url, headers):