why do you suspect it's not working?
the task you have, with the given crontab inputs will only run once-per-day... at 17:14
2018-05-20 17:14:00 UTC
2018-05-21 17:14:00 UTC
2018-05-22 17:14:00 UTC
2018-05-23 17:14:00 UTC
2018-05-24 17:14:00 UTC
...
have you given sufficient time to allow it to run?
note the "is-running false" just means "it is not currently executing" -- it is oper-data if you check the yang module for "scheduler"
leaf is-running {
description
"Whether the task is currently executing.";
type boolean;
default false;
config false;
tailf:cdb-oper {
tailf:persistent false;
}
}
Since your task runs only once-per-day it seems randomly difficult to check the execution at that particular moment.
you may best just check "show scheduler task sync history | notab" to see if any history is given.