Skip to content

Commit 2e87f4e

Browse files
committed
More logging and sleep
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent 9570ab8 commit 2e87f4e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

sdk/python/feast/infra/aws.py

+2
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ def _deploy_feature_server(self, project: str, image_uri: str):
119119
lambda_client = boto3.client("lambda")
120120
api_gateway_client = boto3.client("apigatewayv2")
121121
function = aws_utils.get_lambda_function(lambda_client, resource_name)
122+
_logger.info("Using function name: %s", resource_name)
123+
_logger.info("Found function: %s", function)
122124

123125
if function is None:
124126
# If the Lambda function does not exist, create it.

sdk/python/tests/integration/online_store/test_universal_online.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def _get_online_features_dict_remotely(
275275
if response.get("message") != "Internal Server Error":
276276
break
277277
# Sleep between retries to give the server some time to start
278-
time.sleep(5)
278+
time.sleep(15)
279279
else:
280280
raise Exception("Failed to get online features from remote feature server")
281281
if "metadata" not in response:

0 commit comments

Comments
 (0)