diff --git a/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb b/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb index 0b93cb5df..a41a0d8f5 100644 --- a/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb +++ b/examples/feast_integration/feast_integration/feast_flyte_remote.ipynb @@ -33,7 +33,7 @@ "source": [ "import os\n", "\n", - "os.environ[\"FLYTE_AWS_ENDPOINT\"] = os.environ[\"FEAST_S3_ENDPOINT_URL\"] = \"http://localhost:30084/\"\n", + "os.environ[\"FLYTE_AWS_ENDPOINT\"] = os.environ[\"FEAST_S3_ENDPOINT_URL\"] = \"http://localhost:30002/\"\n", "os.environ[\"FLYTE_AWS_ACCESS_KEY_ID\"] = os.environ[\"AWS_ACCESS_KEY_ID\"] = \"minio\"\n", "os.environ[\"FLYTE_AWS_SECRET_ACCESS_KEY\"] = os.environ[\"AWS_SECRET_ACCESS_KEY\"] = \"miniostorage\"" ] diff --git a/examples/feast_integration/feast_integration/feast_workflow.py b/examples/feast_integration/feast_integration/feast_workflow.py index 16638806d..8e2031652 100644 --- a/examples/feast_integration/feast_integration/feast_workflow.py +++ b/examples/feast_integration/feast_integration/feast_workflow.py @@ -63,7 +63,7 @@ # %% if os.getenv("DEMO") is None: # local execution - os.environ["FEAST_S3_ENDPOINT_URL"] = ENDPOINT = "http://localhost:30084" + os.environ["FEAST_S3_ENDPOINT_URL"] = ENDPOINT = "http://localhost:30002" else: # execution on demo cluster os.environ["FEAST_S3_ENDPOINT_URL"] = ENDPOINT = "http://minio.flyte:9000"