-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed task not removed #2027
Comments
Looking at the Cylc Flow end of the problem I've realized that the task is (correctly) not removed from the Data Store, only task flow numbers. This means that lack of flow number stuff in the gui at present mean that the task will remain shown. I was, on re-examination, unable to remove the task by reloading. Behind the scenes in the UI: query {
taskProxies {
id
flowNums
}
}
{
"data": {
"taskProxies": [
{
"id": "~tim/remove/three/run1//1/start",
"flowNums": "[1]"
},
{
"id": "~tim/remove/three/run1//1/a",
"flowNums": "[]"
}
]
}
} |
I think that is correct, The plan was to display no-flow tasks differently to make this more obvious. From the proposal:
|
Task removal doesn't appear to work (it does, behind the scenes).
Using this workflow:
Carried out the following operations
a
a
to finisha
twice.Note, that the workflow logs show that removal worked the first time, and reasonably enough, not the second time:
I was able to force the task state to change using
cylc reload
. @oliver-sanders saidcitation
The text was updated successfully, but these errors were encountered: