From patchwork Thu Aug 18 15:10:15 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 3511 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 2A12523F26 for ; Thu, 18 Aug 2011 15:10:22 +0000 (UTC) Received: from mail-ew0-f52.google.com (mail-ew0-f52.google.com [209.85.215.52]) by fiordland.canonical.com (Postfix) with ESMTP id 21213A1824F for ; Thu, 18 Aug 2011 15:10:22 +0000 (UTC) Received: by mail-ew0-f52.google.com with SMTP id 28so1105372ewy.11 for ; Thu, 18 Aug 2011 08:10:22 -0700 (PDT) Received: by 10.213.14.67 with SMTP id f3mr1770473eba.56.1313680221735; Thu, 18 Aug 2011 08:10:21 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.213.102.5 with SMTP id e5cs78564ebo; Thu, 18 Aug 2011 08:10:20 -0700 (PDT) Received: by 10.227.54.211 with SMTP id r19mr2056801wbg.76.1313680216293; Thu, 18 Aug 2011 08:10:16 -0700 (PDT) Received: from indium.canonical.com (indium.canonical.com [91.189.90.7]) by mx.google.com with ESMTPS id fu6si5904278wbb.58.2011.08.18.08.10.16 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 18 Aug 2011 08:10:16 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qu4EZ-0005AY-Rb for ; Thu, 18 Aug 2011 15:10:15 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id C7E65E0149 for ; Thu, 18 Aug 2011 15:10:15 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dispatcher X-Launchpad-Branch: ~linaro-validation/lava-dispatcher/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 88 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 88: fix a few error messages Message-Id: <20110818151015.21765.36533.launchpad@ackee.canonical.com> Date: Thu, 18 Aug 2011 15:10:15 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13697"; Instance="initZopeless config overlay" X-Launchpad-Hash: 719d3f7c31f3ecde776688c25d4a622ec6b6690a ------------------------------------------------------------ revno: 88 committer: Paul Larson branch nick: lava-dispatcher timestamp: Thu 2011-08-18 15:51:08 +0100 message: fix a few error messages modified: lava_dispatcher/actions/android_deploy.py --- lp:lava-dispatcher https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk You are subscribed to branch lp:lava-dispatcher. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription === modified file 'lava_dispatcher/actions/android_deploy.py' --- lava_dispatcher/actions/android_deploy.py 2011-08-04 07:19:53 +0000 +++ lava_dispatcher/actions/android_deploy.py 2011-08-18 14:51:08 +0000 @@ -45,7 +45,7 @@ except: tb = traceback.format_exc() client.sio.write(tb) - raise CriticalError("Network can't probe up when deployment") + raise CriticalError("Unable to reach LAVA server, check network") try: boot_tbz2, system_tbz2, data_tbz2 = self.download_tarballs(boot, @@ -53,7 +53,7 @@ except: tb = traceback.format_exc() client.sio.write(tb) - raise CriticalError("Package can't download when deployment") + raise CriticalError("Unable to download artifacts for deployment") boot_tarball = boot_tbz2.replace(LAVA_IMAGE_TMPDIR, '') system_tarball = system_tbz2.replace(LAVA_IMAGE_TMPDIR, '')