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
run integration test as async since that is default for read
Signed-off-by: Rob Howley <howley.robert@gmail.com>
  • Loading branch information
robhowley committed Oct 24, 2024
commit eebf71de944c297c20c0cbfee74d47a2366838a8
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def async_refresh():

@asynccontextmanager
async def lifespan(app: FastAPI):
async_refresh()
await store.initialize()
async_refresh()
yield
stop_refresh()
await store.close()
Expand Down
Loading