Title: Message Title
Maksym Melnychok 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

    a = b = nil
    while something
      a = as.read size
      b = bs.read size
      return false if a != b
    end

FileUtils#compare_stream in 2.0 instead does this:

    a = ""
    b = ""
    while something
      as.read size, a
      bs.rea...

--
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