Update StateServiceFactory to use InMemoryStateService
This commit is contained in:
parent
3dbd459f2c
commit
b54e8352fa
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ from langflow.services.state.service import InMemoryStateService
|
|||
|
||||
class StateServiceFactory(ServiceFactory):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
super().__init__(InMemoryStateService)
|
||||
|
||||
def create(self, settings_service: SettingsService):
|
||||
return InMemoryStateService(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue