diff options
author | Yusuke Endoh <[email protected]> | 2020-02-15 16:27:03 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2020-02-15 16:27:03 +0900 |
commit | fb472ca7adbaceb35aae1b3a6b948720ffc9eb53 (patch) | |
tree | 3d7fc924b3d895288187c902ba4bdb32427bb177 /lib/drb | |
parent | 2bcfdad006a1daac311f517110db6e221b2fa5d5 (diff) |
lib/drb/drb.rb: Use ruby2_keywords for keyword separation
[Bug #16634]
Diffstat (limited to 'lib/drb')
-rw-r--r-- | lib/drb/drb.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb index e2aaf701ce..4d3ea364f1 100644 --- a/lib/drb/drb.rb +++ b/lib/drb/drb.rb @@ -1131,7 +1131,7 @@ module DRb end # Routes method calls to the referenced remote object. - def method_missing(msg_id, *a, &b) + ruby2_keywords def method_missing(msg_id, *a, &b) if DRb.here?(@uri) obj = DRb.to_obj(@ref) DRb.current_server.check_insecure_method(obj, msg_id) |