You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Jonathan Robie (JIRA)" <qp...@incubator.apache.org> on 2008/05/09 18:18:55 UTC

[jira] Updated: (QPID-1044) Python examples need updating for tutorial

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

Jonathan Robie updated QPID-1044:
---------------------------------

    Attachment: python-examples.diff

> 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
>         Attachments: python-examples.diff
>
>
> 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.