Skip to content

Commit

Permalink
Missing require 'weakref' in 1.9's drb.rb
Browse files Browse the repository at this point in the history
Commit 248d5e9 brought 1.8's
non-ObjectSpace implementation of DRbIdConv to 1.9 but it forgot to
add the weakref require. As a result, "uninitialized constant
DRb::DRbIdConv::WeakRef" gets thrown when using DRb under 1.9.
  • Loading branch information
bbrowning committed May 8, 2012
1 parent 16b2963 commit 19078d6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/ruby/1.9/drb/drb.rb
Expand Up @@ -54,6 +54,7 @@
require 'socket'
require 'thread'
require 'fcntl'
require 'weakref'
require 'drb/eq'

#
Expand Down

0 comments on commit 19078d6

Please sign in to comment.