Created
August 30, 2017 14:40
-
-
Save sivabudh/f2b87413d176a7ca0e2f4366500a6154 to your computer and use it in GitHub Desktop.
buddy output
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
python manage.py test | |
Hey, I'm Local! | |
Traceback (most recent call last): | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 1122, in _do_get | |
return self._pool.get(wait, self._timeout) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/util/queue.py", line 145, in get | |
raise Empty | |
sqlalchemy.util.queue.Empty | |
During handling of the above exception, another exception occurred: | |
Traceback (most recent call last): | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 2147, in _wrap_pool_connect | |
return fn() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 387, in connect | |
return _ConnectionFairy._checkout(self) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 766, in _checkout | |
fairy = _ConnectionRecord.checkout(pool) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 516, in checkout | |
rec = pool._do_get() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 1138, in _do_get | |
self._dec_overflow() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/util/langhelpers.py", line 66, in __exit__ | |
compat.reraise(exc_type, exc_value, exc_tb) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise | |
raise value | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 1135, in _do_get | |
return self._create_connection() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 333, in _create_connection | |
return _ConnectionRecord(self) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 461, in __init__ | |
self.__connect(first_connect_check=True) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 651, in __connect | |
connection = pool._invoke_creator(self) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/strategies.py", line 105, in connect | |
return dialect.connect(*cargs, **cparams) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/default.py", line 393, in connect | |
return self.dbapi.connect(*cargs, **cparams) | |
File "/usr/local/lib/python3.6/site-packages/opbeat/instrumentation/packages/base.py", line 131, in __call__ | |
args, kwargs) | |
File "/usr/local/lib/python3.6/site-packages/opbeat/instrumentation/packages/dbapi2.py", line 206, in call_if_sampling | |
return self.call(module, method, wrapped, instance, args, kwargs) | |
File "/usr/local/lib/python3.6/site-packages/opbeat/instrumentation/packages/psycopg2.py", line 44, in call | |
return PGConnectionProxy(wrapped(*args, **kwargs)) | |
File "/usr/local/lib/python3.6/site-packages/psycopg2/__init__.py", line 130, in connect | |
conn = _connect(dsn, connection_factory=connection_factory, **kwasync) | |
psycopg2.OperationalError: FATAL: database "eneos_pos" does not exist | |
The above exception was the direct cause of the following exception: | |
Traceback (most recent call last): | |
File "manage.py", line 22, in <module> | |
execute_from_command_line(sys.argv) | |
File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 367, in execute_from_command_line | |
utility.execute() | |
File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 341, in execute | |
django.setup() | |
File "/usr/local/lib/python3.6/site-packages/django/__init__.py", line 27, in setup | |
apps.populate(settings.INSTALLED_APPS) | |
File "/usr/local/lib/python3.6/site-packages/django/apps/registry.py", line 108, in populate | |
app_config.import_models(all_models) | |
File "/usr/local/lib/python3.6/site-packages/django/apps/config.py", line 199, in import_models | |
self.models_module = import_module(models_module_name) | |
File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module | |
return _bootstrap._gcd_import(name[level:], package, level) | |
File "<frozen importlib._bootstrap>", line 978, in _gcd_import | |
File "<frozen importlib._bootstrap>", line 961, in _find_and_load | |
File "<frozen importlib._bootstrap>", line 950, in _find_and_load_unlocked | |
File "<frozen importlib._bootstrap>", line 655, in _load_unlocked | |
File "<frozen importlib._bootstrap_external>", line 678, in exec_module | |
File "<frozen importlib._bootstrap>", line 205, in _call_with_frames_removed | |
File "/buddy/eneos-pos-web/eneos/apps/mail_api_schedule/models.py", line 34, in <module> | |
schd_inst.start() | |
File "/usr/local/lib/python3.6/site-packages/apscheduler/schedulers/background.py", line 33, in start | |
BaseScheduler.start(self, *args, **kwargs) | |
File "/usr/local/lib/python3.6/site-packages/apscheduler/schedulers/base.py", line 150, in start | |
store.start(self, alias) | |
File "/usr/local/lib/python3.6/site-packages/apscheduler/jobstores/sqlalchemy.py", line 62, in start | |
self.jobs_t.create(self.engine, True) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/sql/schema.py", line 756, in create | |
checkfirst=checkfirst) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1928, in _run_visitor | |
with self._optional_conn_ctx_manager(connection) as conn: | |
File "/usr/local/lib/python3.6/contextlib.py", line 81, in __enter__ | |
return next(self.gen) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1921, in _optional_conn_ctx_manager | |
with self.contextual_connect() as conn: | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 2112, in contextual_connect | |
self._wrap_pool_connect(self.pool.connect, None), | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 2151, in _wrap_pool_connect | |
e, dialect, self) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1465, in _handle_dbapi_exception_noconnection | |
exc_info | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 203, in raise_from_cause | |
reraise(type(exception), exception, tb=exc_tb, cause=cause) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 186, in reraise | |
raise value.with_traceback(tb) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 2147, in _wrap_pool_connect | |
return fn() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 387, in connect | |
return _ConnectionFairy._checkout(self) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 766, in _checkout | |
fairy = _ConnectionRecord.checkout(pool) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 516, in checkout | |
rec = pool._do_get() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 1138, in _do_get | |
self._dec_overflow() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/util/langhelpers.py", line 66, in __exit__ | |
compat.reraise(exc_type, exc_value, exc_tb) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise | |
raise value | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 1135, in _do_get | |
return self._create_connection() | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 333, in _create_connection | |
return _ConnectionRecord(self) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 461, in __init__ | |
self.__connect(first_connect_check=True) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/pool.py", line 651, in __connect | |
connection = pool._invoke_creator(self) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/strategies.py", line 105, in connect | |
return dialect.connect(*cargs, **cparams) | |
File "/usr/local/lib/python3.6/site-packages/sqlalchemy/engine/default.py", line 393, in connect | |
return self.dbapi.connect(*cargs, **cparams) | |
File "/usr/local/lib/python3.6/site-packages/opbeat/instrumentation/packages/base.py", line 131, in __call__ | |
args, kwargs) | |
File "/usr/local/lib/python3.6/site-packages/opbeat/instrumentation/packages/dbapi2.py", line 206, in call_if_sampling | |
return self.call(module, method, wrapped, instance, args, kwargs) | |
File "/usr/local/lib/python3.6/site-packages/opbeat/instrumentation/packages/psycopg2.py", line 44, in call | |
return PGConnectionProxy(wrapped(*args, **kwargs)) | |
File "/usr/local/lib/python3.6/site-packages/psycopg2/__init__.py", line 130, in connect | |
conn = _connect(dsn, connection_factory=connection_factory, **kwasync) | |
sqlalchemy.exc.OperationalError: (psycopg2.OperationalError) FATAL: database "eneos_pos" does not exist | |
FAILEDBuild failed !!!. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment