Title: Message Title
Adrien Thebo commented on an issue
Puppet / Bug PUP-2946
FileUtils implementation broke compare_stream
{{FileUtils.compare_stream}} implementation in ruby 1.9.3 was doing something along the lines of

{code:ruby}
    a = b = nil
    while something
      a = as.read size
      b = bs.read size
      return false if a != b
    end
{code}

{{FileUtils.compare_stream}} in 2.0 instead does this:

{code:ruby}
    a = ""
    b = ""
    while some...

--
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-bugs.
For more options, visit https://groups.google.com/d/optout.

Reply via email to