Return-Path: Delivered-To: apmail-incubator-cassandra-user-archive@minotaur.apache.org Received: (qmail 71783 invoked from network); 15 Feb 2010 18:18:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Feb 2010 18:18:47 -0000 Received: (qmail 23370 invoked by uid 500); 15 Feb 2010 15:32:07 -0000 Delivered-To: apmail-incubator-cassandra-user-archive@incubator.apache.org Received: (qmail 23314 invoked by uid 500); 15 Feb 2010 15:32:07 -0000 Mailing-List: contact cassandra-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cassandra-user@incubator.apache.org Delivered-To: mailing list cassandra-user@incubator.apache.org Received: (qmail 23305 invoked by uid 99); 15 Feb 2010 15:32:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 15:32:07 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of jbellis@gmail.com designates 72.14.220.152 as permitted sender) Received: from [72.14.220.152] (HELO fg-out-1718.google.com) (72.14.220.152) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Feb 2010 15:32:00 +0000 Received: by fg-out-1718.google.com with SMTP id 19so176605fgg.0 for ; Mon, 15 Feb 2010 07:31:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:content-type :content-transfer-encoding; bh=wsYQytBn0/l+kcgORXI3biKD8MmujaG9ZICnmQIFL1E=; b=o78V5l9hm9Wwv+UNwLC4aRGFbUQE2JRu4uqQSYzS0V3ruHZQ9ye3sLeQ1kmNgSYlUF MnMfjqEUJrhpAWsZmTEXtAg/hm6HcjGba+jC57N3UU2yvwmERItmZe7pDoj5PTlN/xgW jZQP3Mpz2dQbX06w7MkVJ5lTtFVGVSME8s9HE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=LShygUWRGtFUgb8SM1HfL40qR7vdMMuw8qxQegr8Fh1TYv4T3vhFyK3MNgmaFGG5OE AW+b63HQ9p3UfUpjlVwrBiJf3Zl/2v/3rrp6YNzFWja7CBGDy18NCFrWy5ZWaARsPyW5 zmgn15dmRayFqJlxSEa9/UzToh8uSsFHDOUMk= MIME-Version: 1.0 Received: by 10.216.85.14 with SMTP id t14mr3081022wee.222.1266247898893; Mon, 15 Feb 2010 07:31:38 -0800 (PST) In-Reply-To: <9b048d181002121238q14543401wab43fb85b520e1bc@mail.gmail.com> References: <9b048d181002120247g1a2b019at667994d4b0b7b04e@mail.gmail.com> <9b048d181002120845q3d48ddf4mf51e22365fb9da07@mail.gmail.com> <9b048d181002121238q14543401wab43fb85b520e1bc@mail.gmail.com> From: Jonathan Ellis Date: Mon, 15 Feb 2010 09:31:18 -0600 Message-ID: Subject: Re: Bootstrap hung To: cassandra-user@incubator.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable are you mixing windows and unix machines in the same cluster? On Fri, Feb 12, 2010 at 2:38 PM, ruslan usifov wr= ote: > Also i have problem with StreamInitiateVerbHandler, the problem in > PendingFile.getTargetFile, namely difference in slashes on win and unix, = so > i change PendingFile.java like this: > > =A0=A0=A0 public PendingFile(String targetFile, long expectedBytes, Strin= g table) > =A0=A0=A0 { > =A0=A0=A0=A0=A0=A0=A0 targetFile_ =3D targetFile.replaceAll("(?:\\\\|/)+"= , "/"); > =A0=A0=A0=A0=A0=A0=A0 expectedBytes_ =3D expectedBytes; > =A0=A0=A0=A0=A0=A0=A0 table_ =3D table; > =A0=A0=A0=A0=A0=A0=A0 ptr_ =3D 0; > =A0=A0=A0 } > > =A0=A0=A0 public void setTargetFile(String file) > =A0=A0=A0 { > =A0=A0=A0=A0=A0=A0=A0 targetFile_ =3D file.replaceAll("(?:\\\\|/)+", "/")= ;; > =A0=A0=A0 } > >