Hi, It seems that we can get Heartbeat 2.1.4 soon, so I am trying STABLE 2.1 (http://hg.linux-ha.org/lha-2.1/) as a release candidate.
These are trivial bugs, but user can find them easily.
It would be convenient if they are fixed before a release.
1) When I quit "crm_mon -i1" using Ctrl + C,
The following error message would appear.
GLib-CRITICAL **: g_source_remove: assertion `tag > 0' failed
See attached gsourceid.patch.
g_source_remove checks its input value whether it's more than zero.
so "sig_src->gsourceid = 0" will be always able to call the error message.
gboolean
g_source_remove (guint tag)
{
GSource *source;
g_return_val_if_fail (tag > 0, FALSE); ### here
source = g_main_context_find_source_by_id (NULL, tag);
if (source)
g_source_destroy (source);
return source != NULL;
}
2) crm_resource leaves its warn message in syslog.
maybe, this message is not needed anymore.
See attached crm_resource.patch
Thanks,
Junko
> > Assuming it comes out, 2.1.4 wont not include all the
> > fixes/enhancements from Pacemaker 0.6.
>
> But 2.1.4 should have all relevant bugfixes to pacemaker, still; though
> indeed not all of the enhancements.
>
>
> Regards,
> Lars
>
> --
> Teamlead Kernel, SuSE Labs, Research and Development
> SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg)
> "Experience is the name everyone gives to their mistakes." -- Oscar Wilde
>
> _______________________________________________
> Linux-HA mailing list
> [email protected]
> http://lists.linux-ha.org/mailman/listinfo/linux-ha
> See also: http://linux-ha.org/ReportingProblems
gsourceid.patch
Description: Binary data
crm_resource.patch
Description: Binary data
_______________________________________________ Linux-HA mailing list [email protected] http://lists.linux-ha.org/mailman/listinfo/linux-ha See also: http://linux-ha.org/ReportingProblems
