]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
SDMP plugin logs warning message every 5 minute if there is no
authorOliver Kurth <okurth@vmware.com>
Wed, 10 Jun 2020 19:05:45 +0000 (12:05 -0700)
committerOliver Kurth <okurth@vmware.com>
Wed, 10 Jun 2020 19:05:45 +0000 (12:05 -0700)
Namespace DB instance created on a VM.  Changing the log level to
debug to solve the problem.

open-vm-tools/services/plugins/serviceDiscovery/serviceDiscovery.c

index 622f5c3f8de47b2629c64846d825ca4194449a7f..086f011807fa33aae394f653f01ae4e57589e5d8 100644 (file)
@@ -365,9 +365,9 @@ ReadData(ToolsAppCtx *ctx,
    status = SendRpcMessage(ctx, DynBuf_Get(&buf), DynBuf_GetSize(&buf),
                            resultData, resultDataLen);
    if (!status) {
-      g_warning("%s: Read over RPC failed, result: %s, resultDataLen: %" FMTSZ
-                "u\n", __FUNCTION__, (*resultData != NULL) ?
-                *resultData : "(null)", *resultDataLen);
+      g_debug("%s: Read over RPC failed, result: %s, resultDataLen: %" FMTSZ
+              "u\n", __FUNCTION__, (*resultData != NULL) ?
+              *resultData : "(null)", *resultDataLen);
    }
 done:
    DynBuf_Destroy(&buf);