From users-return-8194-apmail-continuum-users-archive=continuum.apache.org@continuum.apache.org Tue Oct 26 04:03:50 2010 Return-Path: Delivered-To: apmail-continuum-users-archive@www.apache.org Received: (qmail 77715 invoked from network); 26 Oct 2010 04:03:50 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Oct 2010 04:03:50 -0000 Received: (qmail 48617 invoked by uid 500); 26 Oct 2010 04:03:50 -0000 Delivered-To: apmail-continuum-users-archive@continuum.apache.org Received: (qmail 48562 invoked by uid 500); 26 Oct 2010 04:03:48 -0000 Mailing-List: contact users-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@continuum.apache.org Delivered-To: mailing list users@continuum.apache.org Received: (qmail 48534 invoked by uid 99); 26 Oct 2010 04:03:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Oct 2010 04:03:47 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of odndev@gmail.com designates 209.85.216.171 as permitted sender) Received: from [209.85.216.171] (HELO mail-qy0-f171.google.com) (209.85.216.171) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Oct 2010 04:03:38 +0000 Received: by qyk38 with SMTP id 38so2209443qyk.2 for ; Mon, 25 Oct 2010 21:03:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=QAAYndRPAU4zZ6bfgen70lqDlGhwQMleA2dZ5wMwP0o=; b=bhViVDjb4Jh8PQJxcqEDtYhxmwDQY2mkIShD0pQOfQ79QYPZG0RbDQs8p8CRRNv/zM XOCpADFzPuMMG0zqvCs19eLIdsvk15xzrMj3p4bAIAciYecJmOAnnSYzyGj48GFST7nm kdRuyXz7MRCC+7YHscZo0lNVsL04SKlmAZRQI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=P67QlZgLRwJ5ElKfCgeMb4byrZAREirWQ5GvGy3ioyavzmrJ8uiIR/72sIS6mYIrPf TOZBY21N1thpSKB21r3DFcNKZCoX9Uq2ba+mGTsujQGA47K1IgsLxJNL37LeGaTt+cUf KGHvNDN+PvzCyVSdMj0G3VNoxWlK3vzO7hWms= Received: by 10.229.28.149 with SMTP id m21mr2131244qcc.102.1288065797483; Mon, 25 Oct 2010 21:03:17 -0700 (PDT) Received: from [192.168.1.101] (cpe-75-185-78-71.columbus.res.rr.com [75.185.78.71]) by mx.google.com with ESMTPS id l14sm6883207qck.41.2010.10.25.21.03.16 (version=SSLv3 cipher=RC4-MD5); Mon, 25 Oct 2010 21:03:16 -0700 (PDT) Subject: Bug during release prepare From: Olivier Dehon To: users@continuum.apache.org Content-Type: text/plain; charset="UTF-8" Date: Tue, 26 Oct 2010 00:03:14 -0400 Message-ID: <1288065794.2398.6.camel@droopy-ubuntu> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, On continuum 1.3.1, when preparing a release, if the user mistypes their subversion password and adds a backslash at the end, then the release prepare phase gets stuck in the “update-working-copy” (the first) step. This is because the svn command issued by continuum is: svn --username xxxxx --password abcdef\ --non-interactive ... which means that the space between the password and the space before the --non-interactive option is escaped, which in turn means that this option is not seen at all, and since the password is incorrect, it goes ahead and tries to prompt the user for their correct password in the command line, so the process hangs (found that by running a: ps -edf | grep svn on the server). -Olivier