Skip to content

Commit

Permalink
fix the error in Response.success
Browse files Browse the repository at this point in the history
  • Loading branch information
duoyw committed Jul 23, 2024
1 parent cbc14c7 commit 6e36274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Common/ChatReposne.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_task_failed_response(cls, reason):

@classmethod
def get_task_finished_response(cls):
return Response(ResponseStatusEnum.TASK_CANCELLED, None)
return Response(ResponseStatusEnum.TASK_FINISHED, None)

@classmethod
def get_task_cancelled_response(cls, msg=None):
Expand Down

0 comments on commit 6e36274

Please sign in to comment.