svn commit: r220890 - head/sbin/hastd
Pawel Jakub Dawidek
pjd at FreeBSD.org
Wed Apr 20 16:38:05 UTC 2011
Author: pjd
Date: Wed Apr 20 16:38:05 2011
New Revision: 220890
URL: http://svn.freebsd.org/changeset/base/220890
Log:
If we act in different role than requested by the remote node, log it
as a warning and not an error.
MFC after: 1 week
Modified:
head/sbin/hastd/hastd.c
Modified: head/sbin/hastd/hastd.c
==============================================================================
--- head/sbin/hastd/hastd.c Wed Apr 20 16:36:59 2011 (r220889)
+++ head/sbin/hastd/hastd.c Wed Apr 20 16:38:05 2011 (r220890)
@@ -730,7 +730,7 @@ listen_accept(void)
}
/* Is the resource marked as secondary? */
if (res->hr_role != HAST_ROLE_SECONDARY) {
- pjdlog_error("We act as %s for the resource and not as %s as requested by %s.",
+ pjdlog_warning("We act as %s for the resource and not as %s as requested by %s.",
role2str(res->hr_role), role2str(HAST_ROLE_SECONDARY),
raddr);
nv_add_stringf(nverr, "errmsg",
More information about the svn-src-all
mailing list