github-actions[bot] commented on issue #10012: URL: https://github.com/apache/dolphinscheduler/issues/10012#issuecomment-1124611773
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and found no similar issues. ### What happened After the task is paused, it cannot be started again  ### What you expected to happen Can start tasks ### How to reproduce 1. create python task, code follow: ``` import math c=50 h=30 value = [] print('请输入一组数字:') items=[x for x in input().split(',')] for d in items: value.append(str(int(round(math.sqrt(2*c*float(d)/h))))) print (','.join(value)) ``` 2. start the task 3. pause the task 4. Try booting up again, but All buttons are disabled ### Anything else _No response_ ### Version dev ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
