aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/interop_server.cc
diff options
context:
space:
mode:
authorGravatar Makarand Dharmapurikar <makarandd@google.com>2016-09-28 10:46:27 -0700
committerGravatar Makarand Dharmapurikar <makarandd@google.com>2016-09-28 10:46:27 -0700
commit012fc18be93b98967a20986469eada34eac0c061 (patch)
treeaf88942d263ffee00d0c025443708dcddaa6c2bd /test/cpp/interop/interop_server.cc
parenta04c6789632c1e454cfe563f3144c27498d5ef0a (diff)
doc fixes and max-age set to 60
Diffstat (limited to 'test/cpp/interop/interop_server.cc')
-rw-r--r--test/cpp/interop/interop_server.cc2
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;
}