Skip to content

Commit

Permalink
XXX_FETCHED の状態を削除
Browse files Browse the repository at this point in the history
  • Loading branch information
n-kakuko authored Oct 9, 2024
1 parent 80b2a76 commit b2323e7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/oqtopus_cloud/common/models/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Task(Base):
simulation_opt (str): The simulation optimization used for the task.
ro_error_mitigation (str): The error mitigation method used for readout errors.
note (str): Additional notes for the task.
status (str): The status of the task (QUEUED, QUEUED_FETCHED, RUNNING, COMPLETED, FAILED, CANCELLING, CANCELLING_FETCHED, CANCELLED).
status (str): The status of the task (QUEUED, RUNNING, COMPLETED, FAILED, CANCELLING, CANCELLED).
created_at (datetime): The timestamp when the task was created.
"""

Expand Down Expand Up @@ -121,12 +121,10 @@ class Task(Base):
status: Mapped[enum.Enum] = mapped_column(
Enum(
"QUEUED",
"QUEUED_FETCHED",
"RUNNING",
"COMPLETED",
"FAILED",
"CANCELLING",
"CANCELLING_FETCHED",
"CANCELLED",
),
nullable=False,
Expand Down

0 comments on commit b2323e7

Please sign in to comment.