Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E9A2B200B92 for ; Wed, 28 Sep 2016 22:41:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E84CB160AD4; Wed, 28 Sep 2016 20:41:41 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 369F0160AB8 for ; Wed, 28 Sep 2016 22:41:41 +0200 (CEST) Received: (qmail 39820 invoked by uid 500); 28 Sep 2016 20:41:40 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 39810 invoked by uid 99); 28 Sep 2016 20:41:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Sep 2016 20:41:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3ACA4E08AC; Wed, 28 Sep 2016 20:41:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aconway@apache.org To: commits@qpid.apache.org Date: Wed, 28 Sep 2016 20:41:40 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] qpid-proton git commit: PROTON-1308: Go: fix typos in some AMQP condition names archived-at: Wed, 28 Sep 2016 20:41:42 -0000 Repository: qpid-proton Updated Branches: refs/heads/master 2c438a855 -> ce80f9d72 PROTON-1308: Go: fix typos in some AMQP condition names Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/e7b70d80 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/e7b70d80 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/e7b70d80 Branch: refs/heads/master Commit: e7b70d8048098190827e12b3415c51d766ee4448 Parents: 2c438a8 Author: Alan Conway Authored: Wed Sep 28 11:56:14 2016 -0400 Committer: Alan Conway Committed: Wed Sep 28 16:38:51 2016 -0400 ---------------------------------------------------------------------- .../go/src/qpid.apache.org/amqp/error.go | 28 ++++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/e7b70d80/proton-c/bindings/go/src/qpid.apache.org/amqp/error.go ---------------------------------------------------------------------- diff --git a/proton-c/bindings/go/src/qpid.apache.org/amqp/error.go b/proton-c/bindings/go/src/qpid.apache.org/amqp/error.go index 349fc41..3a178b2 100644 --- a/proton-c/bindings/go/src/qpid.apache.org/amqp/error.go +++ b/proton-c/bindings/go/src/qpid.apache.org/amqp/error.go @@ -30,7 +30,7 @@ import ( // Error is an AMQP error condition. It has a name and a description. // It implements the Go error interface so can be returned as an error value. // -// You can pass amqp.Error to methods that pass an error to a remote endpoint, +// You can pass amqp.Error to methods that send an error to a remote endpoint, // this gives you full control over what the remote endpoint will see. // // You can also pass any Go error to such functions, the remote peer @@ -53,19 +53,19 @@ func MakeError(err error) Error { } var ( - InternalError = "amqp:internal-error" - NotFound = "amqp:not-found" - UnauthorizedAccess = "amqp:unauthorized-access" - DecodeError = "amqp:decode-error" - ResourceLimit = "amqp:resource-limit" - NotAllowed = "amqp:not-allowed" - InvalidField = "amqp:invalid-field" - NotImplemented = "amqp:not-implemented" - ResourceLocked = "amqp:resource-locked" - PreerrorFailed = "amqp:preerror-failed" - ResourceDeleted = "amqp:resource-deleted" - IllegalState = "amqp:illegal-state" - FrameSizeTooSmall = "amqp:frame-size-too-small" + InternalError = "amqp:internal-error" + NotFound = "amqp:not-found" + UnauthorizedAccess = "amqp:unauthorized-access" + DecodeError = "amqp:decode-error" + ResourceLimitExceeded = "amqp:resource-limit-exceeded" + NotAllowed = "amqp:not-allowed" + InvalidField = "amqp:invalid-field" + NotImplemented = "amqp:not-implemented" + ResourceLocked = "amqp:resource-locked" + PreconditionFailed = "amqp:precondition-failed" + ResourceDeleted = "amqp:resource-deleted" + IllegalState = "amqp:illegal-state" + FrameSizeTooSmall = "amqp:frame-size-too-small" ) type PnErrorCode int --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org