From 11e686cc4b8ac72fe96449d11a7184946ccaf5bf Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Tue, 26 Sep 2023 12:18:18 -0700 Subject: [PATCH] chore: tweak log.debug for APM server not supporting central config (#3644) --- lib/apm-client/http-apm-client/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/apm-client/http-apm-client/index.js b/lib/apm-client/http-apm-client/index.js index 3d69440c1e..37828f3188 100644 --- a/lib/apm-client/http-apm-client/index.js +++ b/lib/apm-client/http-apm-client/index.js @@ -437,8 +437,9 @@ Client.prototype._pollConfig = function () { res.resume(); return; } else if (res.statusCode === 404) { + // Either a very old APM server, or early fully-managed (aka serverless). this._log.debug( - '_pollConfig: old APM server does not support central config', + '_pollConfig: APM server does not support central config', ); res.resume(); return;