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
lint/format
Signed-off-by: Miles Adkins <miles.adkins@snowflake.com>
  • Loading branch information
sfc-gh-madkins committed Jul 28, 2022
commit 40507ef85de7cbfc61ad718a9fd5085ebcdf96fa
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/online_stores/snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def online_read(
config: RepoConfig,
table: FeatureView,
entity_keys: List[EntityKeyProto],
requested_features: Optional[List[str]] = None,
requested_features: List[str],
) -> List[Tuple[Optional[datetime], Optional[Dict[str, ValueProto]]]]:
assert isinstance(config.online_store, SnowflakeOnlineStoreConfig)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"password": os.environ["SNOWFLAKE_CI_PASSWORD"],
"role": os.environ["SNOWFLAKE_CI_ROLE"],
"warehouse": os.environ["SNOWFLAKE_CI_WAREHOUSE"],
"database":os.environ["SNOWFLAKE_CI_DATABASE"],
"database": os.environ["SNOWFLAKE_CI_DATABASE"],
"schema": os.environ["SNOWFLAKE_CI_SCHEMA"],
}

Expand Down