lower the loglevel for the informational message that a TCP_ADD opeation
authorRonnie Sahlberg <ronniesahlberg@gmail.com>
Tue, 14 Oct 2008 16:02:09 +0000 (03:02 +1100)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Tue, 14 Oct 2008 16:02:09 +0000 (03:02 +1100)
described an ip address not known to be a public address.

This could happen if someone for genuine reasons accesses a share
through a static ip address.
It can also happen if non homogenous public address configurations are
used and when a tcp description is pushed out to a different node that
does not server/know the specific ip address.

server/ctdb_takeover.c

index 4bfac52f0811938b8a86424cfd2e377216788924..6533d71bc03f870962835949c9ef90e5403be019 100644 (file)
@@ -1133,7 +1133,7 @@ int32_t ctdb_control_tcp_add(struct ctdb_context *ctdb, TDB_DATA indata)
 
        vnn = find_public_ip_vnn(ctdb, &p->dest);
        if (vnn == NULL) {
-               DEBUG(DEBUG_ERR,(__location__ " got TCP_ADD control for an address which is not a public address '%s'\n",
+               DEBUG(DEBUG_INFO,(__location__ " got TCP_ADD control for an address which is not a public address '%s'\n",
                        ctdb_addr_to_str(&p->dest)));
 
                return -1;