We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2b74d2 commit d907aeaCopy full SHA for d907aea
tensorflow-whl/tensorflow-gcs-config/tensorflow_gcs_config/gcs_config_op_kernels.cc
@@ -172,8 +172,8 @@ class GcsCredentialsOpKernel : public OpKernel {
172
Env* env_;
173
174
mutex mu_;
175
- string current_token_ GUARDED_BY(mu_);
176
- uint64 expiration_timestamp_sec_ GUARDED_BY(mu_) = 0;
+ string current_token_ TF_GUARDED_BY(mu_);
+ uint64 expiration_timestamp_sec_ TF_GUARDED_BY(mu_) = 0;
177
178
// The initial delay for exponential backoffs when retrying failed calls.
179
const int64 initial_retry_delay_usec_;
0 commit comments