Implement unsafe method for flushing entire object table and task table. (#1824)

* Implement unsafe method for flushing entire object table and task table.

* Add test.

* Fix test.
This commit is contained in:
Robert Nishihara
2018-04-04 18:29:24 -07:00
committed by Philipp Moritz
parent 888e70f1be
commit 5bde5e75e7
3 changed files with 103 additions and 2 deletions
+3 -2
View File
@@ -3,6 +3,7 @@ from __future__ import division
from __future__ import print_function
from .tfutils import TensorFlowVariables
from .features import flush_redis_unsafe
from .features import flush_redis_unsafe, flush_task_and_object_metadata_unsafe
__all__ = ["TensorFlowVariables", "flush_redis_unsafe"]
__all__ = ["TensorFlowVariables", "flush_redis_unsafe",
"flush_task_and_object_metadata_unsafe"]