Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix integration test
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Mar 2, 2022
commit e5fedcc9dd5702d8b11147ce932a771d943cca0d
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
]

REDIS_REQUIRED = [
"redis>=3.5.3",
"redis==3.5.3",
"redis-py-cluster>=2.1.3",
"hiredis>=2.0.0",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"type": "redis",
"redis_type": "redis_cluster",
# Redis Cluster Port Forwarding is setup in "pr_integration_tests.yaml" under "Setup Redis Cluster".
"connection_string": "127.0.0.1:6001,127.0.0.1:6002,127.0.0.1:6003",
"connection_string": "127.0.0.1:7001,127.0.0.1:7002,127.0.0.1:7003",
}

# FULL_REPO_CONFIGS contains the repo configurations (e.g. provider, offline store,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ def test_entity_ttl_online_store(local_redis_environment, redis_universal_data_s
# setting ttl setting in online store to 1 second
fs.config.online_store.key_ttl_seconds = 1
entities, datasets, data_sources = redis_universal_data_sources
driver_hourly_stats = create_driver_hourly_stats_feature_view(
data_sources["driver"]
)
driver_hourly_stats = create_driver_hourly_stats_feature_view(data_sources.driver)
driver_entity = driver()

# Register Feature View and Entity
Expand Down