Skip to content

Commit

Permalink
[FSTORE-1389][APPEND] move engine parameter to connection initializat…
Browse files Browse the repository at this point in the history
…ion (#204)
  • Loading branch information
robzor92 authored May 13, 2024
1 parent 8826a76 commit 7107ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/hopsworks/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def get_feature_store(self, name: str = None, engine: str = None) -> feature_sto
engine=engine,
).get_feature_store(name)
else:
return connection().get_feature_store(name, engine=engine) # If internal client
return connection(engine=engine).get_feature_store(name) # If internal client

def get_model_registry(self):
"""Connect to Project's Model Registry API.
Expand Down

0 comments on commit 7107ece

Please sign in to comment.