summaryrefslogtreecommitdiffstats
path: root/config/src/apps
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2021-09-21 09:05:17 +0200
committerHarald Musum <musum@yahooinc.com>2021-09-21 09:05:17 +0200
commitc8d5e3b339c57b0135f52aa3060ddd568d61f58b (patch)
treea74750ee9ea650687f45397a6c40c6c305c081fa /config/src/apps
parent1aa004804ae69e180542efeb54204e10a52b81dd (diff)
Use xxhash64 instead of md5 for config payload
Diffstat (limited to 'config/src/apps')
-rw-r--r--config/src/apps/vespa-get-config/getconfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/src/apps/vespa-get-config/getconfig.cpp b/config/src/apps/vespa-get-config/getconfig.cpp
index 273a3abd1cd..679d118d0bc 100644
--- a/config/src/apps/vespa-get-config/getconfig.cpp
+++ b/config/src/apps/vespa-get-config/getconfig.cpp
@@ -240,7 +240,7 @@ GetConfig::Main()
printf("defNamespace %s\n", rKey.getDefNamespace().c_str());
printf("configID %s\n", rKey.getConfigId().c_str());
- printf("configMD5 %s\n", rState.md5.c_str());
+ printf("configXxhash64 %s\n", rState.xxhash64.c_str());
printf("generation %" PRId64 "\n", rState.generation);
printf("trace %s\n", response->getTrace().toString().c_str());