Skip to content

Commit d907aea

Browse files
committed
Update tensorflow_gcs_config source with upstream changes for TF 2.2
1 parent e2b74d2 commit d907aea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow-whl/tensorflow-gcs-config/tensorflow_gcs_config/gcs_config_op_kernels.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ class GcsCredentialsOpKernel : public OpKernel {
172172
Env* env_;
173173

174174
mutex mu_;
175-
string current_token_ GUARDED_BY(mu_);
176-
uint64 expiration_timestamp_sec_ GUARDED_BY(mu_) = 0;
175+
string current_token_ TF_GUARDED_BY(mu_);
176+
uint64 expiration_timestamp_sec_ TF_GUARDED_BY(mu_) = 0;
177177

178178
// The initial delay for exponential backoffs when retrying failed calls.
179179
const int64 initial_retry_delay_usec_;

0 commit comments

Comments
 (0)