Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code

2013-01-21 Thread Jean-Marc Spaggiari
9:30 PM > Subject: Re: HBase 0.94 shell throwing a NoSuchMethodError: > hbase.util.Threads.sleep(I)V from ZK code > > Thanks for reporting this, Benoit. > Here is the call: > >           Threads.sleep(1); > Here is the method to be called: > >   public static void sleep(long mill

Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code

2013-01-20 Thread lars hofhansl
t: Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code Thanks for reporting this, Benoit. Here is the call:           Threads.sleep(1); Here is the method to be called:   public static void sleep(long millis) { Notice the mismatch in argument types: 1

Re: HBase 0.94 shell throwing a NoSuchMethodError: hbase.util.Threads.sleep(I)V from ZK code

2013-01-20 Thread Ted Yu
Thanks for reporting this, Benoit. Here is the call: Threads.sleep(1); Here is the method to be called: public static void sleep(long millis) { Notice the mismatch in argument types: 1 being integer and millis being long. Cheers On Sun, Jan 20, 2013 at 9:01 PM, tsuna wrote: > I j