Python examples need updating for tutorial
------------------------------------------
Key: QPID-1044
URL: https://issues.apache.org/jira/browse/QPID-1044
Project: Qpid
Issue Type: Bug
Reporter: Jonathan Robie
During the 0-10 conversion, the Python examples have evolved in a direction
that doesn't match the way they are used in the tutorial. This patch simplifies
the examples.
In addition to overall simplification, it does the following:
- Eliminates use of random numbers for session names, using uuid4 instead
- Separates initialization for the tutorial text from initialization needed
for our test environment.
# Set parameters for login
host="127.0.0.1"
port=5672
user="guest"
password="guest"
amqp_spec="/usr/share/amqp/amqp.0-10.xml"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
#
# If AMQP_SPEC is defined, use it to locate the spec file instead of
# looking for it in the default location.
if len(sys.argv) > 1 :
sys.argv[1]
if len(sys.argv) > 2 :
int(sys.argv[2])
try:
amqp_spec = os.environ["AMQP_SPEC"]
except KeyError:
amqp_spec="/usr/share/amqp/amqp.0-10.xml"
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.