Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Linux-HA: Users

New release ahead ?

 

 

Linux-HA users RSS feed   Index | Next | Previous | View Threaded


brice+ha at daysofwonder

Jul 8, 2008, 11:58 AM

Post #1 of 7 (131 views)
Permalink
New release ahead ?

Hi,

The heartbeat 2.1.3 release was released in last December 2007.

I just read linux-ha-dev March archives were it was discussed a potential
2.1.4 containing various bug fixes, but to my knowledge it was never
officially released.

Does anyone know what's cooking soon?

I know that I can use Pacemaker + heartbeat 2.1.3 (or maybe even the dev
tip) to get all the bug fixes, but if things are stabilizing a new version
would be really great :-)

On a side note, the http://www.linux-ha.org/RoadMap is largely outdated :-)
--
Brice Figureau

_______________________________________________
Linux-HA mailing list
Linux-HA[at]lists.linux-ha.org
http://lists.linux-ha.org/mailman/listinfo/linux-ha
See also: http://linux-ha.org/ReportingProblems


beekhof at gmail

Jul 9, 2008, 3:44 AM

Post #2 of 7 (120 views)
Permalink
Re: New release ahead ? [In reply to]

On Tue, Jul 8, 2008 at 20:58, Brice Figureau <brice+ha[at]daysofwonder.com> wrote:
> Hi,
>
> The heartbeat 2.1.3 release was released in last December 2007.
>
> I just read linux-ha-dev March archives were it was discussed a potential
> 2.1.4 containing various bug fixes, but to my knowledge it was never
> officially released.
>
> Does anyone know what's cooking soon?
>
> I know that I can use Pacemaker + heartbeat 2.1.3 (or maybe even the dev
> tip) to get all the bug fixes, but if things are stabilizing a new version
> would be really great :-)

Assuming it comes out, 2.1.4 wont not include all the
fixes/enhancements from Pacemaker 0.6.
2.1.4 is a complete dead end for CRM-related functionality.

> On a side note, the http://www.linux-ha.org/RoadMap is largely outdated :-)

indeed
_______________________________________________
Linux-HA mailing list
Linux-HA[at]lists.linux-ha.org
http://lists.linux-ha.org/mailman/listinfo/linux-ha
See also: http://linux-ha.org/ReportingProblems


lmb at suse

Jul 11, 2008, 12:12 PM

Post #3 of 7 (112 views)
Permalink
Re: New release ahead ? [In reply to]

On 2008-07-09T12:44:16, Andrew Beekhof <beekhof[at]gmail.com> wrote:

> 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
Linux-HA[at]lists.linux-ha.org
http://lists.linux-ha.org/mailman/listinfo/linux-ha
See also: http://linux-ha.org/ReportingProblems


ikedaj at intellilink

Jul 14, 2008, 1:30 AM

Post #4 of 7 (105 views)
Permalink
RE: New release ahead ? [In reply to]

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
> Linux-HA[at]lists.linux-ha.org
> http://lists.linux-ha.org/mailman/listinfo/linux-ha
> See also: http://linux-ha.org/ReportingProblems
Attachments: gsourceid.patch (0.38 KB)
  crm_resource.patch (0.36 KB)


beekhof at gmail

Jul 14, 2008, 6:48 AM

Post #5 of 7 (104 views)
Permalink
Re: New release ahead ? [In reply to]

done

On Mon, Jul 14, 2008 at 10:30, Junko IKEDA <ikedaj[at]intellilink.co.jp> wrote:
> 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
>> Linux-HA[at]lists.linux-ha.org
>> http://lists.linux-ha.org/mailman/listinfo/linux-ha
>> See also: http://linux-ha.org/ReportingProblems
>
> _______________________________________________
> Linux-HA mailing list
> Linux-HA[at]lists.linux-ha.org
> http://lists.linux-ha.org/mailman/listinfo/linux-ha
> See also: http://linux-ha.org/ReportingProblems
>
_______________________________________________
Linux-HA mailing list
Linux-HA[at]lists.linux-ha.org
http://lists.linux-ha.org/mailman/listinfo/linux-ha
See also: http://linux-ha.org/ReportingProblems


achapela.rexistros at gmail

Jul 14, 2008, 6:56 AM

Post #6 of 7 (103 views)
Permalink
Re: New release ahead ? [In reply to]

Andrew Beekhof escribió:
> done
>

What is done ? A new release ?? I can't find it.
> On Mon, Jul 14, 2008 at 10:30, Junko IKEDA <ikedaj[at]intellilink.co.jp> wrote:
>
>> 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
>>> Linux-HA[at]lists.linux-ha.org
>>> http://lists.linux-ha.org/mailman/listinfo/linux-ha
>>> See also: http://linux-ha.org/ReportingProblems
>>>
>> _______________________________________________
>> Linux-HA mailing list
>> Linux-HA[at]lists.linux-ha.org
>> http://lists.linux-ha.org/mailman/listinfo/linux-ha
>> See also: http://linux-ha.org/ReportingProblems
>>
>>
> _______________________________________________
> Linux-HA mailing list
> Linux-HA[at]lists.linux-ha.org
> http://lists.linux-ha.org/mailman/listinfo/linux-ha
> See also: http://linux-ha.org/ReportingProblems
>
>

_______________________________________________
Linux-HA mailing list
Linux-HA[at]lists.linux-ha.org
http://lists.linux-ha.org/mailman/listinfo/linux-ha
See also: http://linux-ha.org/ReportingProblems


beekhof at gmail

Jul 14, 2008, 7:06 AM

Post #7 of 7 (103 views)
Permalink
Re: New release ahead ? [In reply to]

On Mon, Jul 14, 2008 at 15:56, Adrian Chapela
<achapela.rexistros[at]gmail.com> wrote:
> Andrew Beekhof escribió:
>>
>> done
>>
>
> What is done ? A new release ?? I can't find it.

applied the patches he posted

>>
>> On Mon, Jul 14, 2008 at 10:30, Junko IKEDA <ikedaj[at]intellilink.co.jp>
>> wrote:
>>
>>>
>>> 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
>>>> Linux-HA[at]lists.linux-ha.org
>>>> http://lists.linux-ha.org/mailman/listinfo/linux-ha
>>>> See also: http://linux-ha.org/ReportingProblems
>>>>
>>>
>>> _______________________________________________
>>> Linux-HA mailing list
>>> Linux-HA[at]lists.linux-ha.org
>>> http://lists.linux-ha.org/mailman/listinfo/linux-ha
>>> See also: http://linux-ha.org/ReportingProblems
>>>
>>>
>>
>> _______________________________________________
>> Linux-HA mailing list
>> Linux-HA[at]lists.linux-ha.org
>> http://lists.linux-ha.org/mailman/listinfo/linux-ha
>> See also: http://linux-ha.org/ReportingProblems
>>
>>
>
> _______________________________________________
> Linux-HA mailing list
> Linux-HA[at]lists.linux-ha.org
> http://lists.linux-ha.org/mailman/listinfo/linux-ha
> See also: http://linux-ha.org/ReportingProblems
>
_______________________________________________
Linux-HA mailing list
Linux-HA[at]lists.linux-ha.org
http://lists.linux-ha.org/mailman/listinfo/linux-ha
See also: http://linux-ha.org/ReportingProblems

Linux-HA users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.