From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 10.142.50.5 with SMTP id x5cs50579wfx; Thu, 23 Jun 2011 23:29:45 -0700 (PDT) Received: by 10.52.94.51 with SMTP id cz19mr2082764vdb.65.1308896984352; Thu, 23 Jun 2011 23:29:44 -0700 (PDT) Return-Path: Received: from rubyforge.org (rubyforge.org [205.234.109.19]) by mx.google.com with ESMTP id o12si2913686vdf.69.2011.06.23.23.29.43; Thu, 23 Jun 2011 23:29:44 -0700 (PDT) Received-SPF: pass (google.com: domain of sup-devel-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) client-ip=205.234.109.19; Authentication-Results: mx.google.com; spf=pass (google.com: domain of sup-devel-bounces@rubyforge.org designates 205.234.109.19 as permitted sender) smtp.mail=sup-devel-bounces@rubyforge.org; dkim=neutral (body hash did not verify) header.i=@gmail.com Received: from rubyforge.org (rubyforge.org [127.0.0.1]) by rubyforge.org (Postfix) with ESMTP id AE2531858361; Fri, 24 Jun 2011 02:29:43 -0400 (EDT) Received: from mail-qw0-f50.google.com (mail-qw0-f50.google.com [209.85.216.50]) by rubyforge.org (Postfix) with ESMTP id D6E171858346 for ; Fri, 24 Jun 2011 01:49:49 -0400 (EDT) Received: by qwe5 with SMTP id 5so1835650qwe.23 for ; Thu, 23 Jun 2011 22:49:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer; bh=QL0BquU5Xr/k58qiKictUxuO14+Aj4ldqGUtKZwG4MU=; b=wQIrl/CiKsBxfmNd4MZLwprF6cLpp7WeVUDZYUbO8g+9Fqa8MSOPu2fG3a8hR7Dglj GpOZ7b8YUFiBtw4dA4wBuJV/tQqwl2dKXtynJ4XQqvT90pV5NqNBLs51QXeBh7ffbp98 iikDZ3M9v3nhLBljXbpc5U74VXsIVWtWM9Us0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=tp24T/eor5gVS8ykVRiloj1G88o9nIrGUR2nXkvGhZ7Cl3UrmXdbAaPVutGim75bJr 6Kyd9Yw2u+oGo+7v+pgkSqLYF+VwK+XEz+6it3SnDptTNU4N6DjeuxWCVEXrZiozd9bg LmecGwWM/FrmGrNUW0TapgSi1L4zD9PWCKyIA= Received: by 10.229.23.197 with SMTP id s5mr2198912qcb.6.1308894589412; Thu, 23 Jun 2011 22:49:49 -0700 (PDT) Received: from localhost (vpn.touchtunes.com [207.96.209.229]) by mx.google.com with ESMTPS id g11sm1751151qcm.39.2011.06.23.22.49.46 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 23 Jun 2011 22:49:47 -0700 (PDT) From: Vivien Didelot To: William@rubyforge.org, Morgan@rubyforge.org, wmorgan-sup@masanjin.net Date: Fri, 24 Jun 2011 01:49:26 -0400 Message-Id: <1308894567-7174-1-git-send-email-vivien.didelot@gmail.com> X-Mailer: git-send-email 1.7.5.4 Cc: Sup developer discussion Subject: [sup-devel] [PATCH] update Heliotrope client requirement X-BeenThere: sup-devel@rubyforge.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: Sup developer discussion List-Id: Sup developer discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: sup-devel-bounces@rubyforge.org Errors-To: sup-devel-bounces@rubyforge.org This patch is for the Turnsole project. It comes with the 0001-put-the-heliotrope-client-into-the-Heliotrope-namesp.patch patch for Heliotrope. It updates the Heliotrope client requirement. Signed-off-by: Vivien Didelot --- lib/turnsole/client.rb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/turnsole/client.rb b/lib/turnsole/client.rb index f651fe3..aaa402b 100644 --- a/lib/turnsole/client.rb +++ b/lib/turnsole/client.rb @@ -1,5 +1,5 @@ require 'thread' -require 'heliotrope-client' +require 'heliotrope/client' ## all the methods here are asynchronous, except for ping! ## requests are queued and dispatched by the thread here. results are queued @@ -10,7 +10,7 @@ class Client def initialize context, url @context = context - @client = HeliotropeClient.new url + @client = Heliotrope::Client.new url @client_mutex = Mutex.new # we sometimes access client from the main thread, for synchronous calls @q = Queue.new end -- 1.7.5.4 _______________________________________________ Sup-devel mailing list Sup-devel@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-devel