Skip to content

Commit

Permalink
vddk: Demote useless VMware error message to a debug statement.
Browse files Browse the repository at this point in the history
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1834267
Thanks: Ming Xie, Pino Toscano.
  • Loading branch information
rwmjones committed Aug 5, 2020
1 parent 95ccfc0 commit df7957c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions plugins/vddk/vddk.c
Expand Up @@ -200,6 +200,15 @@ error_function (const char *fs, va_list args)

trim (str);

/* VDDK 7 added a useless error message about their "phone home"
* system called CEIP which only panics users. Demote it to a debug
* statement. https://bugzilla.redhat.com/show_bug.cgi?id=1834267
*/
if (strstr (str, "Get CEIP status failed") != NULL) {
nbdkit_debug ("%s", str);
return;
}

nbdkit_error ("%s", str);
}

Expand Down

0 comments on commit df7957c

Please sign in to comment.