Replace norelease with TODO

Not a blocker, issue opened under elastic/x-pack-elasticsearch#821

Original commit: elastic/x-pack-elasticsearch@d46f6bc556
This commit is contained in:
Zachary Tong 2017-03-23 13:14:10 -04:00
parent c680b79641
commit e739d86f00
1 changed files with 2 additions and 2 deletions

View File

@ -330,8 +330,8 @@ extends Action<RevertModelSnapshotAction.Request, RevertModelSnapshotAction.Resp
logger.info("Deleting results after '" + deleteAfter + "'");
// NORELEASE: JobDataDeleter is basically delete-by-query.
// We should replace this whole abstraction with DBQ eventually
// TODO JobDataDeleter is basically delete-by-query.
// We should replace this whole abstraction with DBQ eventually (See #821)
JobDataDeleter dataDeleter = new JobDataDeleter(client, jobId);
dataDeleter.deleteResultsFromTime(deleteAfter.getTime() + 1, new ActionListener<Boolean>() {
@Override