Replace my TODOs with generic filesystem bug
PiperOrigin-RevId: 451425792
diff --git a/tensorflow/c/experimental/filesystem/filesystem_interface.h b/tensorflow/c/experimental/filesystem/filesystem_interface.h
index 3108c73..13fd763 100644
--- a/tensorflow/c/experimental/filesystem/filesystem_interface.h
+++ b/tensorflow/c/experimental/filesystem/filesystem_interface.h
@@ -337,7 +337,7 @@
/// function will never be called. There are plans to refactor registration
/// and fix this.
///
- /// TODO(mihaimaruseac): After all filesystems are converted, revisit note.
+ /// TODO(b/139060984): After all filesystems are converted, revisit note.
///
/// This operation must be provided. See "REQUIRED OPERATIONS" above.
void (*cleanup)(TF_Filesystem* filesystem);
@@ -483,7 +483,7 @@
/// traversal couldn't start, `*undeleted_files` must be set to 0 and
/// `*undeleted_dirs` must be set to 1.
///
- /// TODO(mihaimaruseac): After all filesystems are converted, consider
+ /// TODO(b/139060984): After all filesystems are converted, consider
/// invariant about `*undeleted_files` and `*undeleted_dirs`.
///
/// Plugins:
diff --git a/tensorflow/c/experimental/filesystem/modular_filesystem.cc b/tensorflow/c/experimental/filesystem/modular_filesystem.cc
index 9643461..7f7b732 100644
--- a/tensorflow/c/experimental/filesystem/modular_filesystem.cc
+++ b/tensorflow/c/experimental/filesystem/modular_filesystem.cc
@@ -24,7 +24,7 @@
#include "tensorflow/core/platform/file_system_helper.h"
#include "tensorflow/core/util/ptr_util.h"
-// TODO(mihaimaruseac): After all filesystems are converted, all calls to
+// TODO(b/139060984): After all filesystems are converted, all calls to
// methods from `FileSystem` will have to be replaced to calls to private
// methods here, as part of making this class a singleton and the only way to
// register/use filesystems.
diff --git a/tensorflow/core/platform/env.h b/tensorflow/core/platform/env.h
index 1f20aa2..43ee101 100644
--- a/tensorflow/core/platform/env.h
+++ b/tensorflow/core/platform/env.h
@@ -88,7 +88,7 @@
///
/// Same as `RegisterFileSystem` but for filesystems provided by plugins.
///
- /// TODO(mihaimaruseac): After all filesystems are converted, make this be the
+ /// TODO(b/139060984): After all filesystems are converted, make this be the
/// canonical registration function.
virtual Status RegisterFileSystem(const std::string& scheme,
std::unique_ptr<FileSystem> filesystem);
@@ -648,7 +648,7 @@
// The following approach to register filesystems is deprecated and will be
// replaced with modular filesystem plugins registration.
-// TODO(mihaimaruseac): After all filesystems are converted, remove this.
+// TODO(b/139060984): After all filesystems are converted, remove this.
namespace register_file_system {
template <typename Factory>
diff --git a/tensorflow/core/platform/file_system.h b/tensorflow/core/platform/file_system.h
index 23b5536..715b34d 100644
--- a/tensorflow/core/platform/file_system.h
+++ b/tensorflow/core/platform/file_system.h
@@ -898,7 +898,7 @@
/// the only `FileSystem` class and marked as `final`). But this will happen at
/// a later time, after we convert all filesystems to the new API.
///
-/// TODO(mihaimaruseac): After all filesystems are converted, remove old
+/// TODO(b/139060984): After all filesystems are converted, remove old
/// registration and update comment.
class FileSystemRegistry {
public: