diff options
author | Julien Boeuf <jboeuf@google.com> | 2015-08-11 17:39:00 -0700 |
---|---|---|
committer | Julien Boeuf <jboeuf@google.com> | 2015-08-11 17:39:00 -0700 |
commit | c7176a80ab9a01a4bbfdedeed0fbf1710a120850 (patch) | |
tree | a58e43395d9d275e008e7932db2da741e26bc9b3 | |
parent | bc447deaad50756c2e8253bc3347e1731321ddf1 (diff) |
Fixing clock type.
-rw-r--r-- | test/core/security/verify_jwt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/security/verify_jwt.c b/test/core/security/verify_jwt.c index 9b334b3c3e..69bbc3cc0c 100644 --- a/test/core/security/verify_jwt.c +++ b/test/core/security/verify_jwt.c @@ -112,7 +112,7 @@ int main(int argc, char **argv) { while (!sync.is_done) { grpc_pollset_worker worker; grpc_pollset_work(&sync.pollset, &worker, - gpr_inf_future(GPR_CLOCK_REALTIME)); + gpr_inf_future(GPR_CLOCK_MONOTONIC)); } gpr_mu_unlock(GRPC_POLLSET_MU(&sync.pollset)); |