about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-12-18 20:31:35 -0800
committerEric Wong <normalperson@yhbt.net>2008-12-18 20:31:35 -0800
commitbd42a70bb299e088b1c244c3ffe46695393521c5 (patch)
treed19b33e34e22cc663e26a269b861e70dfc13257f /lib
parentfa796bf60396430a3de4ce0409d7f1edf663856f (diff)
downloadmogilefs-client-bd42a70bb299e088b1c244c3ffe46695393521c5.tar.gz
Keep methods in the Mysql backend as compatible with the
standard Backend as possible.
Diffstat (limited to 'lib')
-rw-r--r--lib/mogilefs/mysql.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mogilefs/mysql.rb b/lib/mogilefs/mysql.rb
index eb26416..f2e1bc2 100644
--- a/lib/mogilefs/mysql.rb
+++ b/lib/mogilefs/mysql.rb
@@ -111,7 +111,7 @@ class MogileFS::Mysql
     urls
   end
 
-  def _sleep(params); Kernel.sleep(params[:duration] || 10); {}; end
+  def sleep(params); Kernel.sleep(params[:duration] || 10); {}; end
 
   private