Gabriel,
I don't know about the specific implementation of join_keys_to_values,
but ruby's hash behavior changed between the 1.8 series and 1.9 and
later[1]. In ruby 1.8 hashes are enumerated in a seemingly unsorted
manner, while in ruby 1.9 and later hashes are enumerated in insertion
order. If you are on ruby 1.8, it would be worth seeing if you
experience the same issues in ruby 1.9 or later.

[1] - 
http://stackoverflow.com/questions/7065915/why-is-my-hash-autosorting-itself

On Tue, Mar 11, 2014 at 9:27 AM, Gabriel Filion <lelu...@gmail.com> wrote:
> Hi there,
>
> Say I have a hash like {a=>'1',b=>'2'} and I'd like to get a string that
> looks like "a=1,b=2". I tried using a combination of
> join_keys_to_values() and join() and the result looked correct, but was
> unstable. That unstability is because hashes are not always "sorted" the
> same way.
>
> An unstable string means that the config file in which I use it gets
> modified for no reason from time to time and this triggers an
> unnecessary service refresh.
>
> I'm currently using an inline template to achieve what I want, since
> with ruby I can use h.sort.map to always get results in the same order
> from a hash "h".
>
> Thing is, stdlib's sort() function only accepts strings or arrays.
>
>
> Is there a way to get a "stable" string with current means?
>
> Otherwise, would it be an acceptable idea to add support for hashes in
> sort() ?
>
> --
> Gabriel Filion
>



-- 
Matthaus Owens
Release Manager, Puppet Labs

Join us at PuppetConf 2014, September 23-24 in San Francisco -
http://bit.ly/pupconf14
Register now and save $350!

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CACD%3DwAeMtS1XMAaub9u5nWhhZMEcaFXPX6K%3DAmt_UZmhrOmhyw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to