diff --git a/docs/book/src/messaging-api/Qpid-Messaging-API.xml b/docs/book/src/messaging-api/Qpid-Messaging-API.xml index 5044e7220..8c1d81f26 100644 --- a/docs/book/src/messaging-api/Qpid-Messaging-API.xml +++ b/docs/book/src/messaging-api/Qpid-Messaging-API.xml @@ -219,7 +219,7 @@ under the License. Acknowledges receipt of all fetched messages on the session. This informs the broker that the messages were - transfered and processed by the client successfully. + transferred and processed by the client successfully. Closes the connection, all sessions managed by the connection, and all senders and receivers managed by each session. @@ -311,7 +311,7 @@ under the License. Acknowledges receipt of all fetched messages on the session. This informs the broker that the messages were - transfered and processed by the client successfully. + transferred and processed by the client successfully. Closes the connection, all sessions managed by the connection, and all senders and receivers managed by each session. @@ -2483,9 +2483,9 @@ spout - -content "$(cat rdu.xml | sed -e 's/70/45/')" xml/weather When sending to a queue, the queue's name is set as the - routing key and the message is transfered to the default (or + routing key and the message is transferred to the default (or nameless) exchange. When sending to an exchange, the message - is transfered to that exchange and the routing key is set to + is transferred to that exchange and the routing key is set to the message subject if one is specified. A default subject may be specified in the target address. The subject may also be set on each message individually to override the default if diff --git a/docs/man/qpid-send.1 b/docs/man/qpid-send.1 index a61883602..a8f0055c6 100644 --- a/docs/man/qpid-send.1 +++ b/docs/man/qpid-send.1 @@ -117,7 +117,7 @@ message header 'KEY' to hold the group identifier .TP \fB\-\-group\-prefix\fR STRING (GROUP\-) -Generate group identifers with 'STRING' +Generate group identifiers with 'STRING' prefix (if group\-key specified) .TP \fB\-\-group\-size\fR N (10) diff --git a/docs/man/qpidd.1 b/docs/man/qpidd.1 index 62ce0cd19..d75026f57 100644 --- a/docs/man/qpidd.1 +++ b/docs/man/qpidd.1 @@ -179,7 +179,7 @@ Override the federation tag .TP \fB\-\-session\-max\-unacked\fR DELIVERIES (5000) Maximum number of un\-acknowledged -outoing messages per sesssion +outoing messages per session .SS "Logging options:" .TP \fB\-t\fR [ \fB\-\-trace\fR ] diff --git a/management/python/bin/qpid-send b/management/python/bin/qpid-send index b0105e41a..84f7272a1 100755 --- a/management/python/bin/qpid-send +++ b/management/python/bin/qpid-send @@ -70,7 +70,7 @@ op.add_option("--flow-control", default=0, type="int", help="Do end to end flow op.add_option("--sequence", type="str", default="yes", help="Add a sequence number messages property (required for duplicate/lost message detection)") op.add_option("--timestamp", type="str", default="yes", help="Add a time stamp messages property (required for latency measurement)") op.add_option("--group-key", type="str", help="Generate groups of messages using message header 'KEY' to hold the group identifier") -op.add_option("--group-prefix", default="GROUP-", type="str", help="Generate group identifers with 'STRING' prefix (if group-key specified)") +op.add_option("--group-prefix", default="GROUP-", type="str", help="Generate group identifiers with 'STRING' prefix (if group-key specified)") op.add_option("--group-size", default=10, type="int", help="Number of messages per a group (if group-key specified)") op.add_option("--group-randomize-size", default=False, action="store_true", help="Randomize the number of messages per group to [1...group-size] (if group-key specified)") op.add_option("--group-interleave", default=1, type="int", help="Simultaineously interleave messages from N different groups (if group-key specified)") diff --git a/management/python/bin/qpid-store-resize b/management/python/bin/qpid-store-resize index 38d8eaf1a..92c1e1ba6 100755 --- a/management/python/bin/qpid-store-resize +++ b/management/python/bin/qpid-store-resize @@ -105,7 +105,7 @@ class Resize(object): def _create_new_files(self): """Create new journal files""" - # Assemble records to be transfered + # Assemble records to be transferred master_record_list = {} txn_record_list = self._jrnl_reader.txn_obj_list() if self._opts.vflag and self._jrnl_reader.emap().size() > 0: diff --git a/src/qpid/broker/Broker.cpp b/src/qpid/broker/Broker.cpp index bc5ac4115..542cabfcd 100644 --- a/src/qpid/broker/Broker.cpp +++ b/src/qpid/broker/Broker.cpp @@ -203,7 +203,7 @@ BrokerOptions::BrokerOptions(const std::string& name) : ("dtx-max-timeout", optValue(dtxMaxTimeout, "SECONDS"), "Maximum allowed timeout for DTX transaction. A value of zero disables maximum timeout limit checks and allows arbitrarily large timeout settings.") ("max-negotiate-time", optValue(maxNegotiateTime, "MILLISECONDS"), "Maximum time a connection can take to send the initial protocol negotiation") ("federation-tag", optValue(fedTag, "NAME"), "Override the federation tag") - ("session-max-unacked", optValue(sessionMaxUnacked, "DELIVERIES"), "Maximum number of un-acknowledged outoing messages per sesssion") + ("session-max-unacked", optValue(sessionMaxUnacked, "DELIVERIES"), "Maximum number of un-acknowledged outoing messages per session") ; } @@ -1238,7 +1238,7 @@ Manageable::status_t Broker::queueRedirect(const std::string& srcQueue, std::map params; params.insert(make_pair(acl::PROP_QUEUENAME, tgtQ->getName())); if (!acl->authorise((context)?context->getUserId():"", acl::ACT_REDIRECT, acl::OBJ_QUEUE, srcQ->getName(), ¶ms)) - throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(uknown)"))); + throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(unknown)"))); } // Start the backup overflow partnership @@ -1276,7 +1276,7 @@ Manageable::status_t Broker::queueRedirect(const std::string& srcQueue, std::map params; params.insert(make_pair(acl::PROP_QUEUENAME, tgtQ->getName())); if (!acl->authorise((context)?context->getUserId():"", acl::ACT_REDIRECT, acl::OBJ_QUEUE, srcQ->getName(), ¶ms)) - throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(uknown)"))); + throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied redirect request from " << ((context)?context->getUserId():"(unknown)"))); } queueRedirectDestroy(srcQ, tgtQ, true); @@ -1390,7 +1390,7 @@ int32_t Broker::queueMoveMessages( std::map params; params.insert(make_pair(acl::PROP_QUEUENAME, dest_queue->getName())); if (!acl->authorise((context)?context->getUserId():"", acl::ACT_MOVE, acl::OBJ_QUEUE, src_queue->getName(), ¶ms)) - throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied move request from " << ((context)?context->getUserId():"(uknown)"))); + throw framing::UnauthorizedAccessException(QPID_MSG("ACL denied move request from " << ((context)?context->getUserId():"(unknown)"))); } return (int32_t) src_queue->move(dest_queue, qty, &filter); diff --git a/src/qpid/broker/management-schema.xml b/src/qpid/broker/management-schema.xml index debc1a4af..ef03498e0 100644 --- a/src/qpid/broker/management-schema.xml +++ b/src/qpid/broker/management-schema.xml @@ -403,7 +403,7 @@ - +