Return-Path: X-Original-To: apmail-hama-commits-archive@www.apache.org Delivered-To: apmail-hama-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7DC76108C1 for ; Sat, 13 Jul 2013 03:06:10 +0000 (UTC) Received: (qmail 55037 invoked by uid 500); 13 Jul 2013 03:06:09 -0000 Delivered-To: apmail-hama-commits-archive@hama.apache.org Received: (qmail 54982 invoked by uid 500); 13 Jul 2013 03:06:04 -0000 Mailing-List: contact commits-help@hama.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hama.apache.org Delivered-To: mailing list commits@hama.apache.org Received: (qmail 54972 invoked by uid 99); 13 Jul 2013 03:06:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Jul 2013 03:06:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Jul 2013 03:05:59 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C5C442388831; Sat, 13 Jul 2013 03:05:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1502739 - in /hama/trunk: CHANGES.txt core/src/main/java/org/apache/hama/bsp/message/AbstractMessageManager.java Date: Sat, 13 Jul 2013 03:05:38 -0000 To: commits@hama.apache.org From: kennethxian@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130713030538.C5C442388831@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kennethxian Date: Sat Jul 13 03:05:36 2013 New Revision: 1502739 URL: http://svn.apache.org/r1502739 Log: HAMA-776: localQueue is set as Send queue in init function of AbstractMessageManager Modified: hama/trunk/CHANGES.txt hama/trunk/core/src/main/java/org/apache/hama/bsp/message/AbstractMessageManager.java Modified: hama/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hama/trunk/CHANGES.txt?rev=1502739&r1=1502738&r2=1502739&view=diff ============================================================================== --- hama/trunk/CHANGES.txt (original) +++ hama/trunk/CHANGES.txt Sat Jul 13 03:05:36 2013 @@ -6,6 +6,7 @@ Release 0.6.3 (unreleased changes) BUG FIXES + HAMA-776: localQueue is set as Send queue in init function of AbstractMessageManager (kennethxian) HAMA-769: Intermediate queue's close method is not called, clean work may be omitted (kennethxian) HAMA-771: Determining the count of active vertices (edwardyoon) HAMA-777: FunctionFactory does not work when create IdentityFunction (Yexi Jiang) Modified: hama/trunk/core/src/main/java/org/apache/hama/bsp/message/AbstractMessageManager.java URL: http://svn.apache.org/viewvc/hama/trunk/core/src/main/java/org/apache/hama/bsp/message/AbstractMessageManager.java?rev=1502739&r1=1502738&r2=1502739&view=diff ============================================================================== --- hama/trunk/core/src/main/java/org/apache/hama/bsp/message/AbstractMessageManager.java (original) +++ hama/trunk/core/src/main/java/org/apache/hama/bsp/message/AbstractMessageManager.java Sat Jul 13 03:05:36 2013 @@ -90,7 +90,7 @@ public abstract class AbstractMessageMan this.peer = peer; this.conf = conf; this.peerAddress = peerAddress; - this.localQueue = getSenderQueue(); + this.localQueue = getReceiverQueue(); this.localQueueForNextIteration = getSynchronizedReceiverQueue(); this.maxCachedConnections = conf.getInt(MAX_CACHED_CONNECTIONS_KEY, 100); }