aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/cloud/retrying_file_system.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/platform/cloud/retrying_file_system.h')
-rw-r--r--tensorflow/core/platform/cloud/retrying_file_system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/platform/cloud/retrying_file_system.h b/tensorflow/core/platform/cloud/retrying_file_system.h
index 92aa72be89..941ab7ad65 100644
--- a/tensorflow/core/platform/cloud/retrying_file_system.h
+++ b/tensorflow/core/platform/cloud/retrying_file_system.h
@@ -177,7 +177,7 @@ class RetryingWritableFile : public WritableFile {
Close().IgnoreError();
}
- Status Append(const StringPiece& data) override {
+ Status Append(StringPiece data) override {
return RetryingUtils::CallWithRetries(
[this, &data]() { return base_file_->Append(data); },
initial_delay_microseconds_);