This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat screen-n-api.log | |
o "n-api failed to start" | tee "/opt/stack/status/stack/n-api.failure"fg || ech | |
[1] 18036 | |
cd /opt/stack/nova && /usr/local/bin/nova-api | |
2014-09-08 11:47:59.152 DEBUG nova.wsgi [-] Loading app ec2 from /etc/nova/api-paste.ini from (pid=18038) load_app /opt/stack/nova/nova/wsgi.py:517 | |
2014-09-08 11:47:59.355 DEBUG stevedore.extension [-] found extension EntryPoint.parse('file = nova.image.download.file') from (pid=18038) _load_plugins /usr/local/lib/python2.7/dist-packages/stevedore/extension.py:156 | |
2014-09-08 11:47:59.509 INFO nova.openstack.common.periodic_task [-] Skipping periodic task _periodic_update_dns because its interval is negative | |
2014-09-08 11:47:59.688 DEBUG stevedore.extension [-] found extension EntryPoint.parse('file = nova.image.download.file') from (pid=18038) _load_plugins /usr/local/lib/python2.7/dist-packages/stevedore/extension.py:156 | |
2014-09-08 11:47:59.688 DEBUG stevedore.extension [-] found extension EntryPoint.parse('file = nova.image.download.file') from (pid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ testr run tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_server_name | |
====================================================================== | |
FAIL: tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_server_name[gate] | |
tags: worker-0 | |
---------------------------------------------------------------------- | |
pythonlogging:'': {{{ | |
2014-09-08 13:55:56,010 29271 INFO [tempest.common.rest_client] Request (ServersTestJSON:test_update_server_name): 200 POST http://162.209.109.13:5000/v2.0/tokens | |
2014-09-08 13:55:56,362 29271 INFO [tempest.common.rest_client] Request (ServersTestJSON:test_update_server_name): 202 POST http://162.209.109.13:8774/v2/3c5bceea2495496b8d307a8088f97839/servers 0.351s | |
2014-09-08 13:55:56,452 29271 INFO [tempest.common.rest_client] Request (ServersTestJSON:test_update_server_name): 200 GET http://162.209.109.13:8774/v2/3c5bceea2495496b8d307a8088f97839/servers/9321df37-46a1-4882-9c6a-655e9760fb0f 0.084s | |
2014-09-08 13:55:57,614 29271 INFO [temp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host 192.168.* | |
ProxyCommand none | |
Host 10.* | |
ProxyCommand none | |
Host localhost 127.* | |
ProxyCommand none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@nelsnelson-haproxy-test-1409633215:~# cat /etc/network/interfaces | |
# Injected by Nova on instance boot | |
# | |
# This file describes the network interfaces available on your system | |
# and how to activate them. For more information, see interfaces(5). | |
# The loopback network interface | |
auto lo | |
iface lo inet loopback |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@nelsnelson-haproxy-test-1409629728:~# pgrep -fl ssh | |
root@nelsnelson-haproxy-test-1409629728:~# env | |
SHELL=/bin/bash | |
TERM=linux | |
HUSHLOGIN=FALSE | |
USER=root | |
MAIL=/var/mail/root | |
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
PWD=/root | |
SHLVL=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Worker(threading.Thread): | |
"""Thread executing tasks from a given tasks queue""" | |
def __init__(self, tasks): | |
threading.Thread.__init__(self) | |
self.tasks = tasks | |
self.daemon = True | |
self.start() | |
def run(self): | |
while True: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[u'monitor.error', | |
{u'_context_auth_token': u'6ea99e1354464ea59a24411788ff70b4', | |
u'_context_glance_api_servers': None, | |
u'_context_instance_lock_checked': False, | |
u'_context_is_admin': False, | |
u'_context_project_id': u'654598', | |
u'_context_project_name': u'654598', | |
u'_context_quota_class': None, | |
u'_context_read_deleted': u'no', | |
u'_context_remote_address': u'127.0.0.1', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ testr run tempest.api.compute.servers.test_servers.ServersTestJSON.test_update_server_name | |
running=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \ | |
OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \ | |
OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-500} \ | |
OS_TEST_LOCK_PATH=${OS_TEST_LOCK_PATH:-${TMPDIR:-'/tmp'}} \ | |
${PYTHON:-python} -m subunit.run discover -t ./ ${OS_TEST_PATH:-./tempest/test_discover} --list | |
running=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \ | |
OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \ | |
OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-500} \ | |
OS_TEST_LOCK_PATH=${OS_TEST_LOCK_PATH:-${TMPDIR:-'/tmp'}} \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample ``local.conf`` for user-configurable variables in ``stack.sh`` | |
# NOTE: Copy this file to the root ``devstack`` directory for it to | |
# work properly. | |
# ``local.conf`` is a user-maintained setings file that is sourced from ``stackrc``. | |
# This gives it the ability to override any variables set in ``stackrc``. | |
# Also, most of the settings in ``stack.sh`` are written to only be set if no | |
# value has already been set; this lets ``local.conf`` effectively override the | |
# default values. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DEFAULT] | |
debug = True | |
log_file = tempest.log | |
use_stderr = False | |
lock_path = /opt/stack/data/tempest | |
# | |
# Options defined in tempest.openstack.common.lockutils | |
# |