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