summaryrefslogtreecommitdiffstats
path: root/bin/nova-ajax-console-proxy
Commit message (Collapse)AuthorAgeFilesLines
* Remove ajaxterm from NovaThierry Carrez2012-02-071-146/+0
| | | | | | | | | | Removes copy of ajaxterm code, nova-ajax-console-proxy, and support for get_ajax_console from Nova proper. Implements blueprint remove-ajaxterm Fixes bug 917963 Change-Id: I2c0ff427c53c0f63a18b10475d6b4cbe9a085d83
* Move cfg to nova.openstack.commonMark McLoughlin2012-02-031-1/+1
| | | | | | | | | | | | | | | Move it here so that it can be kept in sync with openstack-common using the new update.py script for code in openstack-common's incubation area. See here for more details: http://wiki.openstack.org/CommonLibrary#Incubation Note: this commit just moves the existing code in Nova with no other changes. A subsequent commit will sync it with latest openstack-common so that it is easier see the new changes. Change-Id: If88d678b1b9bad3d37117de7f7159d7fea8ab4c8
* Refactor away the flags.DEFINE_* helpersMark McLoughlin2012-01-281-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | The next obvious step in porting to cfg is to define all options using cfg schemas directly rather than using the flags.DEFINE_* helpers. This is a large change, but it is almost entirely pure refactoring and does not result in any functional changes. The only change to note is that the default values for glance_host, glance_api_servers and default_publisher_id options are now using opt value interpolation i.e. -glance_host=_get_my_ip() +glance_host='$my_ip' -glance_api_servers=['%s:%d' % (FLAGS.glance_host, FLAGS.glance_port)] +glance_api_servers=['$glance_host:$glance_port'] -default_publisher_id=FLAGS.host +default_publisher_id='$host' Also note that the lower_bound check on the {report,periodic}_interval options are no more, but this has been true since cfg was first added. Change-Id: Ia58c8f0aaf61628bb55b1b8485118a2a9852ed17
* Remove unused flags.Help*FlagMark McLoughlin2012-01-251-3/+0
| | | | | | | These don't do anything anymore since we just rely on optparse's --help behaviour. Change-Id: I7c74456a06fe924503dcfbcfa4da9fc5c26b8ab0
* Merge "Stop nova-ajax-console-proxy configuring its own logging."Jenkins2011-11-121-2/+0
|\
| * Stop nova-ajax-console-proxy configuring its own logging.Ewan Mellor2011-11-011-2/+0
| | | | | | | | | | | | | | | | nova-ajax-console-proxy is overriding the logging configuration carefully set up by nova.log. There's no reason for it to do this, and it's the only script in nova/bin that does. I've removed that code. Change-Id: I5b2d5026d529a20d26ba3bb721b15f235f6fdda8
* | Merge "Log the exception when we get one."Jenkins2011-11-041-1/+2
|\ \
| * | Log the exception when we get one.Ewan Mellor2011-11-011-1/+2
| |/ | | | | | | Change-Id: Iee478c8f300b608dd153e3400bd17866f52543c5
* / Bug #884534: nova-ajax-console-proxy crashes on shutdownEwan Mellor2011-10-311-1/+1
|/ | | | | | | Close the correct connection, when shutting down. self is not defined in this context. Change-Id: I0dc84a1c7de468a381f5765ccba589acbc8173dd
* fix ajax console proxy for new create_consumer methodChris Behrens2011-08-291-2/+1
|
* fix nova-ajax-console-proxyChris Behrens2011-08-281-6/+7
|
* more cleanup of binaries per reviewVishvananda Ishaya2011-08-181-4/+3
|
* Fix to nova-ajax-console-proxy to use the new syntax.Mandell Degerness2011-08-041-5/+5
| | | | create_consumer and create_connection abstractions were added recently.
* Very small alterations, switched from using start() to pass host/port, to ↵Brian Lamar2011-06-211-2/+3
| | | | just defining them up front in init. Doesn't make sense to set them in start because we can't start more than once any way. Also, unbroke binaries.
* fix for lp742650Anthony Young2011-03-291-10/+9
|
* TopicConsumer -> TopicAdapterConsumerBrian Lamar2011-03-281-1/+1
|
* disable-msg -> disableBrian Lamar2011-03-181-1/+1
|
* fixed: bin/nova-ajax-console-proxy:66:19: W601 .has_key() is deprecated, use ↵Christian Berendt2011-02-251-1/+1
| | | | 'in'
* check if QUERY_STRING is empty or not before building the request URLChristian Berendt2011-02-251-4/+10
|
* add help back to the scripts that don't use service.pytermie2011-02-231-1/+3
|
* switch to explicit call to logging.setup()Vishvananda Ishaya2011-02-211-1/+1
|
* consolidate boto_extensions.py and euca-get-ajax-console, fix bugsAnthony Young2011-01-101-1/+12
| | | | from previous trunk merge
* better bin name, and pep8Anthony Young2010-12-231-0/+126