4511903876
- jsc#ECO-2164 for update 11.1.0 (build 16036546) (boo#1171764) with new 'Service Discovery' plugin (boo#1171765). - Reenabled building sdmp in the spec file. - Added patches (boo#1171765) + sdmp-get-version.patch + sdmp-netstat-to-ss.patch + sdmp-warnings.patch OBS-URL: https://build.opensuse.org/request/show/815801 OBS-URL: https://build.opensuse.org/package/show/Virtualization:VMware/open-vm-tools?expand=0&rev=395
26 lines
1.2 KiB
Diff
26 lines
1.2 KiB
Diff
commit 2141bda9c0c424b8a1407940642676b2b8d53499
|
|
Author: Oliver Kurth <okurth@vmware.com>
|
|
Date: Wed Jun 10 12:05:45 2020 -0700
|
|
|
|
SDMP plugin logs warning message every 5 minute if there is no
|
|
Namespace DB instance created on a VM. Changing the log level to
|
|
debug to solve the problem.
|
|
|
|
diff --git a/open-vm-tools/services/plugins/serviceDiscovery/serviceDiscovery.c b/open-vm-tools/services/plugins/serviceDiscovery/serviceDiscovery.c
|
|
index 87dd5893..c6c2e1dc 100644
|
|
--- a/open-vm-tools/services/plugins/serviceDiscovery/serviceDiscovery.c
|
|
+++ b/open-vm-tools/services/plugins/serviceDiscovery/serviceDiscovery.c
|
|
@@ -381,9 +381,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);
|