[jira] [Commented] (QPID-5349) C++ windows packaging does not install qpid-proton.dll library

2013-11-18 Thread Gordon Sim (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825231#comment-13825231
 ] 

Gordon Sim commented on QPID-5349:
--

I would be in favour of merging this to 0.26 branch. The patch is simple and 
affects nothing but the issue as reported (i.e. install location of libraries 
on windows).

 C++ windows packaging does not install qpid-proton.dll library
 --

 Key: QPID-5349
 URL: https://issues.apache.org/jira/browse/QPID-5349
 Project: Qpid
  Issue Type: Bug
  Components: Build Tools
Affects Versions: 0.25
 Environment: Windows with Proton
Reporter: Chuck Rolke

 Installation of Qpid on windows neglects qpid-proton and qpid-protond dll 
 files. These were included in install/bin before and are clear dependents of 
 qpidmessaging.dll.
 A script that should produce the installation is here:
 {code}
 cd qpid
 subst Q: .
 Q:
 mkdir install
 mkdir build
 cd build
 set QPID_BUILD_ROOT=%CD%
 :: run cmake
 cmake -G Visual Studio 9 2008 ^
   -DCMAKE_INSTALL_PREFIX=Q:/install ^
   -DBOOST_ROOT=%MY_BOOST% ^
   -DPROTON_ROOT=P:/install ^
   -DBUILD_DOCS=No ^
   ../cpp
 :: build/install qpid
 devenv   qpid-cpp.sln /build Debug|Win32  /project INSTALL
 devenv   qpid-cpp.sln /build RelWithDebInfo|Win32 /project INSTALL
 {code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Created] (QPID-5354) [AMQP 1.0] durable node property not signalled if specified on its own

2013-11-18 Thread Gordon Sim (JIRA)
Gordon Sim created QPID-5354:


 Summary: [AMQP 1.0] durable node property not signalled if 
specified on its own
 Key: QPID-5354
 URL: https://issues.apache.org/jira/browse/QPID-5354
 Project: Qpid
  Issue Type: Bug
Reporter: Gordon Sim


When requesting creation of the node on demand when attaching, if the only 
thing specified for the node in the address string is that it is durable, that 
fact will not be communicated via the node-properties sent with the attach.

E.g. 'q; {,create:always,node:{durable:True}}' will not result in a durable 
queue being created (however if some other property is specified in addition, 
or if the durable property is specified through a nested properties map, then 
it will be).





--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Updated] (QPID-5354) [AMQP 1.0] durable node property not signalled if specified on its own

2013-11-18 Thread Gordon Sim (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-5354?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gordon Sim updated QPID-5354:
-

  Component/s: C++ Client
Affects Version/s: 0.26
Fix Version/s: 0.26
 Assignee: Gordon Sim

 [AMQP 1.0] durable node property not signalled if specified on its own
 --

 Key: QPID-5354
 URL: https://issues.apache.org/jira/browse/QPID-5354
 Project: Qpid
  Issue Type: Bug
  Components: C++ Client
Affects Versions: 0.26
Reporter: Gordon Sim
Assignee: Gordon Sim
 Fix For: 0.26


 When requesting creation of the node on demand when attaching, if the only 
 thing specified for the node in the address string is that it is durable, 
 that fact will not be communicated via the node-properties sent with the 
 attach.
 E.g. 'q; {,create:always,node:{durable:True}}' will not result in a durable 
 queue being created (however if some other property is specified in addition, 
 or if the durable property is specified through a nested properties map, then 
 it will be).



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5354) [AMQP 1.0] durable node property not signalled if specified on its own

2013-11-18 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5354?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825294#comment-13825294
 ] 

ASF subversion and git services commented on QPID-5354:
---

Commit 1543018 from [~gsim] in branch 'qpid/trunk'
[ https://svn.apache.org/r1543018 ]

QPID-5354: ensure requested durability for dynamically created node is 
communicated

 [AMQP 1.0] durable node property not signalled if specified on its own
 --

 Key: QPID-5354
 URL: https://issues.apache.org/jira/browse/QPID-5354
 Project: Qpid
  Issue Type: Bug
  Components: C++ Client
Affects Versions: 0.26
Reporter: Gordon Sim
Assignee: Gordon Sim
 Fix For: 0.26


 When requesting creation of the node on demand when attaching, if the only 
 thing specified for the node in the address string is that it is durable, 
 that fact will not be communicated via the node-properties sent with the 
 attach.
 E.g. 'q; {,create:always,node:{durable:True}}' will not result in a durable 
 queue being created (however if some other property is specified in addition, 
 or if the durable property is specified through a nested properties map, then 
 it will be).



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5354) [AMQP 1.0] durable node property not signalled if specified on its own

2013-11-18 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5354?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825295#comment-13825295
 ] 

ASF subversion and git services commented on QPID-5354:
---

Commit 1543019 from [~gsim] in branch 'qpid/trunk'
[ https://svn.apache.org/r1543019 ]

QPID-5354: added test

 [AMQP 1.0] durable node property not signalled if specified on its own
 --

 Key: QPID-5354
 URL: https://issues.apache.org/jira/browse/QPID-5354
 Project: Qpid
  Issue Type: Bug
  Components: C++ Client
Affects Versions: 0.26
Reporter: Gordon Sim
Assignee: Gordon Sim
 Fix For: 0.26


 When requesting creation of the node on demand when attaching, if the only 
 thing specified for the node in the address string is that it is durable, 
 that fact will not be communicated via the node-properties sent with the 
 attach.
 E.g. 'q; {,create:always,node:{durable:True}}' will not result in a durable 
 queue being created (however if some other property is specified in addition, 
 or if the durable property is specified through a nested properties map, then 
 it will be).



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5349) C++ windows packaging does not install qpid-proton.dll library

2013-11-18 Thread Justin Ross (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825327#comment-13825327
 ] 

Justin Ross commented on QPID-5349:
---

Reviewed by Gordon.  Approved for 0.26.

 C++ windows packaging does not install qpid-proton.dll library
 --

 Key: QPID-5349
 URL: https://issues.apache.org/jira/browse/QPID-5349
 Project: Qpid
  Issue Type: Bug
  Components: Build Tools
Affects Versions: 0.25
 Environment: Windows with Proton
Reporter: Chuck Rolke

 Installation of Qpid on windows neglects qpid-proton and qpid-protond dll 
 files. These were included in install/bin before and are clear dependents of 
 qpidmessaging.dll.
 A script that should produce the installation is here:
 {code}
 cd qpid
 subst Q: .
 Q:
 mkdir install
 mkdir build
 cd build
 set QPID_BUILD_ROOT=%CD%
 :: run cmake
 cmake -G Visual Studio 9 2008 ^
   -DCMAKE_INSTALL_PREFIX=Q:/install ^
   -DBOOST_ROOT=%MY_BOOST% ^
   -DPROTON_ROOT=P:/install ^
   -DBUILD_DOCS=No ^
   ../cpp
 :: build/install qpid
 devenv   qpid-cpp.sln /build Debug|Win32  /project INSTALL
 devenv   qpid-cpp.sln /build RelWithDebInfo|Win32 /project INSTALL
 {code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5349) C++ windows packaging does not install qpid-proton.dll library

2013-11-18 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825366#comment-13825366
 ] 

ASF subversion and git services commented on QPID-5349:
---

Commit 1543046 from c...@apache.org in branch 'qpid/branches/0.26'
[ https://svn.apache.org/r1543046 ]

QPID-5349: Change windows qpid-proton install directory from \lib to \bin. 
Merge r1542880 from trunk

 C++ windows packaging does not install qpid-proton.dll library
 --

 Key: QPID-5349
 URL: https://issues.apache.org/jira/browse/QPID-5349
 Project: Qpid
  Issue Type: Bug
  Components: Build Tools
Affects Versions: 0.25
 Environment: Windows with Proton
Reporter: Chuck Rolke

 Installation of Qpid on windows neglects qpid-proton and qpid-protond dll 
 files. These were included in install/bin before and are clear dependents of 
 qpidmessaging.dll.
 A script that should produce the installation is here:
 {code}
 cd qpid
 subst Q: .
 Q:
 mkdir install
 mkdir build
 cd build
 set QPID_BUILD_ROOT=%CD%
 :: run cmake
 cmake -G Visual Studio 9 2008 ^
   -DCMAKE_INSTALL_PREFIX=Q:/install ^
   -DBOOST_ROOT=%MY_BOOST% ^
   -DPROTON_ROOT=P:/install ^
   -DBUILD_DOCS=No ^
   ../cpp
 :: build/install qpid
 devenv   qpid-cpp.sln /build Debug|Win32  /project INSTALL
 devenv   qpid-cpp.sln /build RelWithDebInfo|Win32 /project INSTALL
 {code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Resolved] (QPID-5349) C++ windows packaging does not install qpid-proton.dll library

2013-11-18 Thread Chuck Rolke (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-5349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Chuck Rolke resolved QPID-5349.
---

   Resolution: Fixed
Fix Version/s: 0.26

Merged fix into 0.26 release branch

 C++ windows packaging does not install qpid-proton.dll library
 --

 Key: QPID-5349
 URL: https://issues.apache.org/jira/browse/QPID-5349
 Project: Qpid
  Issue Type: Bug
  Components: Build Tools
Affects Versions: 0.25
 Environment: Windows with Proton
Reporter: Chuck Rolke
 Fix For: 0.26


 Installation of Qpid on windows neglects qpid-proton and qpid-protond dll 
 files. These were included in install/bin before and are clear dependents of 
 qpidmessaging.dll.
 A script that should produce the installation is here:
 {code}
 cd qpid
 subst Q: .
 Q:
 mkdir install
 mkdir build
 cd build
 set QPID_BUILD_ROOT=%CD%
 :: run cmake
 cmake -G Visual Studio 9 2008 ^
   -DCMAKE_INSTALL_PREFIX=Q:/install ^
   -DBOOST_ROOT=%MY_BOOST% ^
   -DPROTON_ROOT=P:/install ^
   -DBUILD_DOCS=No ^
   ../cpp
 :: build/install qpid
 devenv   qpid-cpp.sln /build Debug|Win32  /project INSTALL
 devenv   qpid-cpp.sln /build RelWithDebInfo|Win32 /project INSTALL
 {code}



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Resolved] (QPID-5350) Dispatch - Management queries that receive empty tables results in corrupt response

2013-11-18 Thread Ted Ross (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-5350?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Ross resolved QPID-5350.


Resolution: Fixed

 Dispatch - Management queries that receive empty tables results in corrupt 
 response
 ---

 Key: QPID-5350
 URL: https://issues.apache.org/jira/browse/QPID-5350
 Project: Qpid
  Issue Type: Bug
  Components: Qpid Dispatch
Reporter: Ted Ross
Assignee: Ted Ross

 A management query that results in an empty response causes a corrupt message 
 body in the response.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5354) [AMQP 1.0] durable node property not signalled if specified on its own

2013-11-18 Thread Chuck Rolke (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5354?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825410#comment-13825410
 ] 

Chuck Rolke commented on QPID-5354:
---

This fix addresses the issue described. Approved for inclusion in 0.26


 [AMQP 1.0] durable node property not signalled if specified on its own
 --

 Key: QPID-5354
 URL: https://issues.apache.org/jira/browse/QPID-5354
 Project: Qpid
  Issue Type: Bug
  Components: C++ Client
Affects Versions: 0.26
Reporter: Gordon Sim
Assignee: Gordon Sim
 Fix For: 0.26


 When requesting creation of the node on demand when attaching, if the only 
 thing specified for the node in the address string is that it is durable, 
 that fact will not be communicated via the node-properties sent with the 
 attach.
 E.g. 'q; {,create:always,node:{durable:True}}' will not result in a durable 
 queue being created (however if some other property is specified in addition, 
 or if the durable property is specified through a nested properties map, then 
 it will be).



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5354) [AMQP 1.0] durable node property not signalled if specified on its own

2013-11-18 Thread Justin Ross (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5354?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825430#comment-13825430
 ] 

Justin Ross commented on QPID-5354:
---

Reviewed by Chuck.  Approved for 0.26.

 [AMQP 1.0] durable node property not signalled if specified on its own
 --

 Key: QPID-5354
 URL: https://issues.apache.org/jira/browse/QPID-5354
 Project: Qpid
  Issue Type: Bug
  Components: C++ Client
Affects Versions: 0.26
Reporter: Gordon Sim
Assignee: Gordon Sim
 Fix For: 0.26


 When requesting creation of the node on demand when attaching, if the only 
 thing specified for the node in the address string is that it is durable, 
 that fact will not be communicated via the node-properties sent with the 
 attach.
 E.g. 'q; {,create:always,node:{durable:True}}' will not result in a durable 
 queue being created (however if some other property is specified in addition, 
 or if the durable property is specified through a nested properties map, then 
 it will be).



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5354) [AMQP 1.0] durable node property not signalled if specified on its own

2013-11-18 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5354?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825441#comment-13825441
 ] 

ASF subversion and git services commented on QPID-5354:
---

Commit 1543066 from [~gsim] in branch 'qpid/branches/0.26'
[ https://svn.apache.org/r1543066 ]

QPID-5354: ensure durability gets requested in node-properties (backported 
r1543018 and r1543019 for 0.26)

 [AMQP 1.0] durable node property not signalled if specified on its own
 --

 Key: QPID-5354
 URL: https://issues.apache.org/jira/browse/QPID-5354
 Project: Qpid
  Issue Type: Bug
  Components: C++ Client
Affects Versions: 0.26
Reporter: Gordon Sim
Assignee: Gordon Sim
 Fix For: 0.26


 When requesting creation of the node on demand when attaching, if the only 
 thing specified for the node in the address string is that it is durable, 
 that fact will not be communicated via the node-properties sent with the 
 attach.
 E.g. 'q; {,create:always,node:{durable:True}}' will not result in a durable 
 queue being created (however if some other property is specified in addition, 
 or if the durable property is specified through a nested properties map, then 
 it will be).



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-4984) Linear File Allocation for the Linux AIO Store

2013-11-18 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-4984?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825518#comment-13825518
 ] 

ASF subversion and git services commented on QPID-4984:
---

Commit 1543093 from [~kpvdr] in branch 'qpid/trunk'
[ https://svn.apache.org/r1543093 ]

QPID-4984: Cleanup of #includes

 Linear File Allocation for the Linux AIO Store
 --

 Key: QPID-4984
 URL: https://issues.apache.org/jira/browse/QPID-4984
 Project: Qpid
  Issue Type: Improvement
  Components: C++ Broker
Reporter: Ted Ross
Assignee: Kim van der Riet

 This Jira is for a proposed change to the AIO legacy store in the Qpid C++ 
 Broker.
 Rather than pre-allocating store files in a fixed-size ring buffer (per 
 queue), the linear store allocates files to queue journals on an as-needed 
 basis, freeing them to a free-pool when no longer needed (i.e. all stored 
 messages have been dequeued).
 The development is ongoing in a branch called linearstore.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Created] (QPID-5355) C++ Broker schema object deletion crashes old clients

2013-11-18 Thread Chuck Rolke (JIRA)
Chuck Rolke created QPID-5355:
-

 Summary: C++ Broker schema object deletion crashes old clients
 Key: QPID-5355
 URL: https://issues.apache.org/jira/browse/QPID-5355
 Project: Qpid
  Issue Type: Bug
  Components: Qpid Managment Framework
Affects Versions: 0.20
Reporter: Chuck Rolke
Assignee: Ted Ross


Commit [https://svn.apache.org/viewvc?view=revisionrevision=r1349865] deletes 
a management variable. This causes problems for clients that focus on an old 
version of the schema and expect the property to exist today.

The proposal here is to restore the Session:framesOutstanding statistic, 
describe it as deprecated, and set it's value to zero.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



Review Request 15652: C++ Broker - Restore deprecated Session statistic

2013-11-18 Thread Chug Rolke

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/15652/
---

Review request for qpid and Ted Ross.


Bugs: QPID-5355
https://issues.apache.org/jira/browse/QPID-5355


Repository: qpid


Description
---

Restore deleted statistic; describe it as deprecated. The variable is unused 
and always has a value of zero.

Clients using 0.18 may expect to receive the statistic on updates and fail when 
it no longer exists.


Diffs
-

  trunk/qpid/cpp/src/qpid/broker/management-schema.xml 1543103 

Diff: https://reviews.apache.org/r/15652/diff/


Testing
---

Passes 'make test'. Variable exists with value of zero in all Sessions.


Thanks,

Chug Rolke



Re: Review Request 15652: C++ Broker - Restore deprecated Session statistic

2013-11-18 Thread Ted Ross

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/15652/#review29062
---

Ship it!


Whoever made the original change should be flogged.


- Ted Ross


On Nov. 18, 2013, 1:48 p.m., Chug Rolke wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 https://reviews.apache.org/r/15652/
 ---
 
 (Updated Nov. 18, 2013, 1:48 p.m.)
 
 
 Review request for qpid and Ted Ross.
 
 
 Bugs: QPID-5355
 https://issues.apache.org/jira/browse/QPID-5355
 
 
 Repository: qpid
 
 
 Description
 ---
 
 Restore deleted statistic; describe it as deprecated. The variable is unused 
 and always has a value of zero.
 
 Clients using 0.18 may expect to receive the statistic on updates and fail 
 when it no longer exists.
 
 
 Diffs
 -
 
   trunk/qpid/cpp/src/qpid/broker/management-schema.xml 1543103 
 
 Diff: https://reviews.apache.org/r/15652/diff/
 
 
 Testing
 ---
 
 Passes 'make test'. Variable exists with value of zero in all Sessions.
 
 
 Thanks,
 
 Chug Rolke
 




[jira] [Assigned] (QPID-5351) Settle on one prefix for Dispatch names

2013-11-18 Thread Ted Ross (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-5351?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Ross reassigned QPID-5351:
--

Assignee: Ted Ross

 Settle on one prefix for Dispatch names
 ---

 Key: QPID-5351
 URL: https://issues.apache.org/jira/browse/QPID-5351
 Project: Qpid
  Issue Type: Improvement
  Components: Qpid Dispatch
Reporter: Justin Ross
Assignee: Ted Ross
 Attachments: consistent-naming.patch


 When we have a chance to clarify a true connection for our users by
 using a consistent convention, we should.  Here's what we have now:
 {noformat}
   qpid-dxrouter.conf
   qpid-dxrouterd
   qdstat
   QD_TOOLS_HOME
   dx_ for C symbols
   qdx for AMQP addresses
 {noformat}
 A mess!  I propose one of the following:
 {noformat}
   dxrouterd.conf qdxrouterd.confqdrouterd.conf
   dxrouterd  qdxrouterd qdrouterd
   dxstat qdxstatqdstat
   DX_TOOLS_HOME  QDX_TOOLS_HOME QD_TOOLS_HOME
   dx_ for symbolsqdx_ for symbols   qd_ for symbols
   dx for addresses   qdx for addresses  qd for addresses
 {noformat}
 Expressed as a rule: where it's sensible to use a short form, always
 use qd (or whatever ends up being canonical).  Otherwise, spell it
 out: qpid/dispatch.
 A standard prefix also improves command-line discoverability:
 qd[TAB][TAB] shows you all the entrypoints.
 I slightly prefer qd because it's the simplest abbreviation of Qpid
 Dispatch.  The patch attached here uses it, but I am quite willing to
 supply a new set of patches that use another prefix.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-5355) C++ Broker schema object deletion crashes old clients

2013-11-18 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13825665#comment-13825665
 ] 

ASF subversion and git services commented on QPID-5355:
---

Commit 1543123 from c...@apache.org in branch 'qpid/trunk'
[ https://svn.apache.org/r1543123 ]

QPID-5355: Restore deleted management statistic.

 C++ Broker schema object deletion crashes old clients
 -

 Key: QPID-5355
 URL: https://issues.apache.org/jira/browse/QPID-5355
 Project: Qpid
  Issue Type: Bug
  Components: Qpid Managment Framework
Affects Versions: 0.20
Reporter: Chuck Rolke
Assignee: Ted Ross

 Commit [https://svn.apache.org/viewvc?view=revisionrevision=r1349865] 
 deletes a management variable. This causes problems for clients that focus on 
 an old version of the schema and expect the property to exist today.
 The proposal here is to restore the Session:framesOutstanding statistic, 
 describe it as deprecated, and set it's value to zero.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org