diff options
author | Makarand Dharmapurikar <makarandd@google.com> | 2016-09-28 10:46:27 -0700 |
---|---|---|
committer | Makarand Dharmapurikar <makarandd@google.com> | 2016-09-28 10:46:27 -0700 |
commit | 012fc18be93b98967a20986469eada34eac0c061 (patch) | |
tree | af88942d263ffee00d0c025443708dcddaa6c2bd /test/cpp | |
parent | a04c6789632c1e454cfe563f3144c27498d5ef0a (diff) |
doc fixes and max-age set to 60
Diffstat (limited to 'test/cpp')
-rw-r--r-- | test/cpp/interop/interop_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/interop/interop_server.cc b/test/cpp/interop/interop_server.cc index 64eec4241a..06d1bdb796 100644 --- a/test/cpp/interop/interop_server.cc +++ b/test/cpp/interop/interop_server.cc @@ -159,7 +159,7 @@ class TestServiceImpl : public TestService::Service { gpr_timespec ts = gpr_now(GPR_CLOCK_REALTIME); std::string timestamp = std::to_string(ts.tv_nsec); response->mutable_payload()->set_body(timestamp.c_str(), timestamp.size()); - context->AddInitialMetadata("cache-control", "max-age=100000, public"); + context->AddInitialMetadata("cache-control", "max-age=60, public"); return Status::OK; } |