mirror of https://github.com/langgenius/dify.git
feat(graph_runtime_state): prevent to set variable pool after initialized.
This commit is contained in:
parent
61c79b0013
commit
16e9cd5ac5
|
|
@ -56,11 +56,6 @@ class GraphRuntimeState(BaseModel):
|
|||
"""Get the variable pool."""
|
||||
return self._variable_pool
|
||||
|
||||
@variable_pool.setter
|
||||
def variable_pool(self, value: VariablePool) -> None:
|
||||
"""Set the variable pool."""
|
||||
self._variable_pool = value
|
||||
|
||||
@property
|
||||
def start_at(self) -> float:
|
||||
"""Get the start time."""
|
||||
|
|
|
|||
Loading…
Reference in New Issue