Skip to content

Commit 93ffb2d

Browse files
Update state-manager/app/models/db/state.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 508f4bf commit 93ffb2d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

state-manager/app/models/db/state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class State(BaseDatabaseModel):
2727
enqueue_after: int = Field(default_factory=lambda: int(time.time() * 1000), gt=0, description="Unix time in milliseconds after which the state should be enqueued")
2828
retry_count: int = Field(default=0, description="Number of times the state has been retried")
2929
fanout_id: str = Field(default_factory=lambda: str(uuid.uuid4()), description="Fanout ID of the state")
30-
manul_retry_fanout_id: str = Field(default="", description="Fanout ID of the state that is manually retried")
30+
manual_retry_fanout_id: str = Field(default="", description="Fanout ID of the state that is manually retried")
3131

3232
@before_event([Insert, Replace, Save])
3333
def _generate_fingerprint(self):

0 commit comments

Comments
 (0)