GithubHelp home page GithubHelp logo

ciscotestautomation / xpresso Goto Github PK

View Code? Open in Web Editor NEW
76.0 22.0 13.0 203 KB

XPRESSO: the standard pyATS UI Dashboard

License: Apache License 2.0

Python 24.67% Shell 75.33%
network-automation docker docker-compose pyats cisco xpresso dashboard

xpresso's Introduction

pyATS Web Dashboard: XPRESSO

Designed to streamline your network automation, test and validation experience, XPRESSO is the standard pyATS UI dashboard that manages your test suites, test resources and test results, providing insights to your network through Cisco pyATS.

The content of this repository is to help users with one-click deployment of XPRESSO inside their lab/networks.

General Information

EULA

XPRESSO is available for you, free to use, under the standard Apache 2.0 license (see LICENSE file for details).

In addition you agree to the follow terms and conditions:

XPRESSO was primarily developed as an in-house UI dashboard for Cisco engineering - and then made available to our customers, you, free of charge, and as a value-add to our products. The development team did their best to make the system modular and componentized, independent of Cisco internal tooling.

All we ask is that if you be patient with us, and if you find, during your usage, oversights & bugs, please kindly report to us at [email protected], and optionally work with the team to identify, classify and/or verify the fix.

XPRESSO does not collect user statistics, and will not send telemetry of user information back to Cisco.

Requirements

  • Linux/macOS environment
  • Docker installed and in working condition
  • Free disk space for log storage
  • Minimum System Spec:
    • 4 CPU (with hyper-threading)
    • 16G memory
  • Ideal System Spec:
    • 12 CPU
    • 64G memory

Note: lower system spec will result in a much longer initial boot-up time.

Migration steps

Deployment

XPRESSO is developed using a micro-services architecture, with the services spanning over multiple docker containers, and the overall access achieved through a gateway that processes the APIs and distributes them to the services.

This repository helps with deploying and setting up your XPRESSO instance with just a few clicks.

1. Clone This Repository

# in this example, we'll put everything under /workspace/xpresso
# you may choose your own home location
mkdir /workspace
cd /workspace
git clone https://github.com/CiscoTestAutomation/xpresso

2. Initializing using setup script

NOTE: If you want to do manual setup , then you can skip this step.

Run the script with providing the proper URL of the server.

./setup.sh  http://youmachinehostname/

After this script, you can skip the next step.

3. Manual Initialization

The default set of settings should work for most users, with out of the box URL set to http://localhost/. Eg - you can only access XPRESSO on this localhost.

To make the instance available for other users on your network to access, modify the .env file and set the ADVERTISED_URL to the full, proper URL of this server, eg, http://xpresso.yourdomain.com/.

IMPORTANT: Go through all steps in this section. If you skip a step not explicitly marked "optional" you will encounter issues.

  • BASE_DIR is where all contents of this repo reside (etc/, env/, initializers/, .env, and docker-compose.yml). Default to current location (cloned repo dir).

  • At file ${BASE_DIR}/.env set proper value for ADVERTISED_URL, INSTANCE_ID and TOOL_NAME.

  • Under ${BASE_DIR}/env there are places for further modifications as follows:

    • databases.env for the mysql root password, and Xpresso's database user xpresso_admin and its password.
    • elasticsearch.env for custom changes on the elasticsearch cluster.
  • Make sure xpresso_admin password is the same across all these files

    • env/database.env
    • initializers/docker-entrypoint-initdb.d/1-user.sql
    • initializers/settings.yml
    • etc/mgmt_settings.py
  • If you have updated xpresso_admin password from UI, update the password in the initializers/new_settings.yml as well.

  • Create a dir under data dir at: ${DATA_DIR}/elastic

    • Make the elastic data dir writable: chmod -R 777 ${DATA_DIR}/elastic.
  • Double check that wait-for-it.sh script is executable. If not, run chmod +x wait-for-it.sh.

  • Give write permission to mysql logs dir at the host. i.e., chmod -R 777 ${LOGS_DIR}/database.

  • At file ${BASE_DIR}/.env make sure DATA_DIR and LOGS_DIR have proper values and pointing to your desired locations.

    • DATA_DIR should be somewhere with sufficient disk space for XPRESSO data.
    • LOGS_DIR should be somewhere with sufficient disk space for XPRESSO micros-ervices logs.
  • [ WARNING ]: double check the permissions on the DATA_DIR, LOGS_DIR, and their subdirectories.

  • [ WARNING ]: in linux servers, make sure the max_map_count is set to at least 262144, ie vm.max_map_count=262144. See elastic documentation for details.

  • [ WARNING ]: in linux servers, uncomment the /etc/localtime:/etc/localtime:ro entries under volumes for all services to ensure timezone Xpresso uses matches your host.

  • [ OPTIONAL ]: at file ${BASE_DIR}/.env, change TAG to most appropriate value for your XPRESSO instance.

  • [ OPTIONAL ]: by default no ports are exposed in Docker. For your testing purposes, you can uncomment the ports entry in docker-compose.yml file for the services you want.

  • Important: Adding new settings or updating existing ones should be done through initializers/new_settings.yml file. Once done, restart management service and your setting will be updated right away. Remember: you may also need to restart all other service which are supposed to use the new/update settings.

3. Custom LDAP Configuration (optional)

XPRESSO supports multiple LDAP authentication, by allowing you provide a list of ldap configurations. To enable this:

  • In initializers/settings.yml, under common, add/modify an extra setting LDAP_CONFIG with the value being a list of configurations for:

    • LDAP_DESCRIPTION e.g. ABC Organization LDAP
    • GEN_USER e.g. gen_username
    • SEARCH_SCOPE e.g. SUBTREE | BASE | LEVEL
    • LDAP_PROTOCOL e.g. LDAP
    • LDAP_SOURCE e.g. ABC
    • LDAP_NAME e.g. ABC LDAP Auth
    • LDAP_HOST e.g. internal.abc.com
    • SEARCH_FILTER e.g. (uid={USER})
    • GEN_PASS e.g. gen_password
    • SEARCH_BASE e.g. o=internal.abc.com
    • SEARCH_ATTRIBUTES e.g. ["cn", "givenName", "title", "mail"]
  • In same file initializers/settings.yml, under microservices add (if not exists) auths service and modify your AUTHENTICATION_BACKENDS to include authms.backends.CustomLDAPBackend

  • Finally, for LDAP search, in same file initializers/settings.yml, search under microservices for users and add:

    • SEARCH_BACKENDS: ["user_profiles.backends.CustomLDAPSearch"]
  • When updating microservices' settings, make sure to include url and description as well.

  • Restart the management service docker-compose restart management, in order to reflect the changes.

Important: whatever is set in initializers/settings.yml will be the initial settings.

4. Start Your Engine

You're good to go:

cd /workspace/xpresso

# pull the latest images
docker-compose pull

# fire all cylinders
docker-compose up -d

You should be able to access XPRESSO now at http://localhost/. Enjoy!

It may take a while for the initial settings to be automatically applied while the system boots for the first time. This may mean you could not login using the default credentials for a few minutes. Give it some time (eg, 5-10min on a 2016 MacBook Pro 15)

5. New Xpresso Worker [optional] New Xpresso worker (v20.11) has a lot of improveoments over the older versions. If you're willing to upgrade your Xpresso to version v20.11, you need to make sure Worker data directory is correct. Just verify that workers data directory is located at ${BASE_DIR}/data/workers.

6. Email and SMTP [optional]

Add or modify initializers/new_settings.yml under common section to suit your email server to enable XPRESSO to send emails. This is used for user signup / management, automated notifications of runs and reservations, and sending of result reports.

EMAIL_HOST: 'my-smtp-server'
EMAIL_PORT: 25
EMAIL_HOST_USER: 'username'
EMAIL_HOST_PASSWORD: 'passwd',
EMAIL_USE_TLS: true, // or remove
EMAIL_USE_SSL: true, // or remove
EMAIL_TIMEOUT: 10000
EMAIL_SSL_KEYFILE: '/path/to/pem', // or remove
EMAIL_SSL_CERTFILE: '/apth/to/pem' // or remove

Important: Adding new settings or updating existing ones should be done through initializers/new_settings.yml file. Once done, restart management service and your setting will be updated right away. Remember: you may also need to restart all other service which are supposed to use the new/update settings.

Administrator Login

XPRESSO will automatically creates a default admin user at startup. Use the username/password admin/admin to login to the dashboard with full administrator privileges.

You may register more users into the internal database after you login as the administrator.

HTTPS

For HTTPS hosting, you need to provide the SSL certificates (.key and .pem files) and update NGINX settings to reflect these changes.

Put the .key and .pem files under ${BASE_DIR}/etc/ and update ${BASE_DIR}/etc/nginx.conf accordingly.

User Documentation

Once XPRESSO is running, the full user documentation is available directly in the UI.

Data & Logs

By default, all your data and services logs are stored under ./data/ (e.i., DATA_DIR) and ./logs/ (i.e., LOGS_DIR) directory, including database files, archives uploaded, etc. To wipe the server and "start from scratch" again, just delete these folders.

No data is saved in the containers - everything is volume mounted to disk.

Common Issues, Questions & Answers

Unhealthy services

If you run docker-compose ps or docker ps and see any unlealthy services, first check the logs docker-compose logs -f <service-name> or <LOGS_DIR>/<service-name>. If logs are not informative, you can restart the service: docker-compose stop <service-name> && docker-compose up -d <service-name>.

Why are there references (eg, in logs) to S3?

Initially XPRESSO was called S3, with the number 3 being a superscript (eg, S-cubed), short for "self-serving-services". As this confused some folks with Amazon S3 services, we renamed the pyATS web dashboard service to XPRESSO, expressing our love for coffee.

Error: No Resources Found

This occurs when the resource management service did not boot up properly. It happens usually when the server you are launching on is a bit slow. Try the following:

docker-compose restart resources

The problem should go away.

Cannot Login using default admin/admin

Wait a bit more, or docker-compose restart users auths. The initial bootup performs a lot of first-start settings and database migrations, and could fail due to running on a slow server.

ElasticSearch failure to start

Please check the logs using docker-compose logs elasticsearch. If it complains about permission issues, run: chmod 777 data/elastic and restart elastic using docker-compose restart elasticsearch. Also, make sure you've run this: sysctl -w vm.max_map_count=262144.

Cannot connect to database

If services are failing to start, and logs show that they cannot connect to database at database:3306, make sure your firewalls are not blocking the bridge network 192.168.66.0/24.

General networking issues with Xpresso install

  • Ensure hostname is properly set and resolvable both internally and externally to the host machine
  • Ensure DNS on the host is configured to be able to resolve its external hostname and IP
  • Ensure the ADVERTISED_URL in the .env file is set to the fully qualified external URL using hostname or IP not localhost
  • Ensure if a proxy is set, it does not affect traffic going to the above domain/hostname
  • Ensure nothing else is using or restricting the local 192.168.66.x subnet (or change it to another one)
  • Ensure to switch off the Firewall: For CENTOS - sudo systemctl stop firewalld , Ubuntu - sudo ufw disable

As a trial - shutdown xpresso docker-compose down, turn off your firewall, restart docker service, and try starting xpresso again.

See: https://github.com/CiscoTestAutomation/xpresso/wiki#how-to-test-docker-network-and-ensure-containers-can-talk-to-each-other and https://forums.docker.com/t/no-route-to-host-network-request-from-container-to-host-ip-port-published-from-other-container/39063/17

xpresso's People

Contributors

adelph-cisco avatar fargburger avatar fdorani avatar hanfordwu avatar jatinbajaj1 avatar jcrwhite avatar lilyholms avatar perdyann avatar simingy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

xpresso's Issues

schedules not picking up on modified testbeds

If we modify a testbed which is currently associated with a schedule, that change is not picked up by the existing schedules.
For example, If I modify the device credentials on the testbed, the schedule will still use the old credential.
However, If I run the job directly, the updated credentials are used without problems.

Unable to login with default credentials.

I've gone through the recommended troubleshooting steps:

  • all containers/apps are running
  • admin/admin doesn't work
  • docker-compose restart users auths and waited several minutes and no changes in behavior.

Here's the tail of the users log:

users_1 | [2021-02-12 15:38:53 +0000] [1] [INFO] Starting gunicorn 19.7.1
users_1 | [2021-02-12 15:38:53 +0000] [1] [DEBUG] Arbiter booted
users_1 | [2021-02-12 15:38:53 +0000] [1] [INFO] Listening at: http://0.0.0.0:8000 (1)
users_1 | [2021-02-12 15:38:53 +0000] [1] [INFO] Using worker: sync
users_1 | [2021-02-12 15:38:53 +0000] [14] [INFO] Booting worker with pid: 14
users_1 | [2021-02-12 15:38:53 +0000] [15] [INFO] Booting worker with pid: 15
users_1 | [2021-02-12 15:38:54 +0000] [17] [INFO] Booting worker with pid: 17
users_1 | [2021-02-12 15:38:54 +0000] [1] [DEBUG] 3 workers

Here's the tail of the auths logs:

auths_1 | [2021-02-12 15:38:53 +0000] [1] [INFO] Starting gunicorn 19.7.1
auths_1 | [2021-02-12 15:38:53 +0000] [1] [DEBUG] Arbiter booted
auths_1 | [2021-02-12 15:38:53 +0000] [1] [INFO] Listening at: http://0.0.0.0:8000 (1)
auths_1 | [2021-02-12 15:38:53 +0000] [1] [INFO] Using worker: sync
auths_1 | [2021-02-12 15:38:53 +0000] [11] [INFO] Booting worker with pid: 11
auths_1 | [2021-02-12 15:38:53 +0000] [13] [INFO] Booting worker with pid: 13
auths_1 | [2021-02-12 15:38:53 +0000] [14] [INFO] Booting worker with pid: 14
auths_1 | [2021-02-12 15:38:53 +0000] [1] [DEBUG] 3 workers

These logs were collected at 2021-02-12 15:46:53 +0000

Are there other steps recommended for troubleshooting login issues?

Readme Typo

Readme refers to a env/databases.env but should rather state env/database.env without the "s".

Unhealthy services

Hi, I have a fresh build of Xpresso in my lab running on VM with 12 vCPUs, 32GB RAM, and 300GB storage and have two unhealthy services- xpresso_jenkinsengine-celery_1 and xpresso_users-celery_1. I've checked the docker logs for both services and don't see anything that jumps out, the only real complaint is that I'm running the worker with elevated privileges.

Thanks...

Sql DB error

I am getting the following DB error. Could someone please assist?

+++++++++++++Logs++++++++

============ PuTTY log 2021.07.29 15:41:20 ============

Waiting for management service @ http://management:8000/management/api/v1/settings/all to be up...
Waiting for management service @ http://management:8000/management/api/v1/settings/all to be up...
Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...Operations to perform:
Apply all migrations: admin, auth, contenttypes, django_celery_beat, sessions, user_profiles
Running migrations:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1050, "Table 'auth_permission' already exists")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "./manage.py", line 22, in
execute_from_command_line(sys.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 371, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python3.5/site-packages/django/core/management/init.py", line 365, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 288, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/base.py", line 335, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python3.5/site-packages/django/core/management/commands/migrate.py", line 200, in handle
fake_initial=fake_initial,
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 117, in migrate
state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 147, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/executor.py", line 244, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/migration.py", line 122, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python3.5/site-packages/django/db/migrations/operations/models.py", line 92, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 298, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/base/schema.py", line 117, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 100, in execute
return super().execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 68, in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 77, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 85, in _execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python3.5/site-packages/django/db/utils.py", line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/usr/local/lib/python3.5/site-packages/django/db/backends/utils.py", line 83, in _execute
return self.cursor.execute(sql)
File "/usr/local/lib/python3.5/site-packages/django/db/backends/mysql/base.py", line 71, in execute
return self.cursor.execute(query, args)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 250, in execute
self.errorhandler(self, exc, value)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 50, in defaulterrorhandler
raise errorvalue
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 247, in execute
res = self._query(query)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 411, in _query
rowcount = self._do_query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/cursors.py", line 374, in _do_query
db.query(q)
File "/usr/local/lib/python3.5/site-packages/MySQLdb/connections.py", line 277, in query
_mysql.connection.query(self, query)
django.db.utils.OperationalError: (1050, "Table 'auth_permission' already exists")
Applying auth.0001_initial...๏ฟฝ]0;azureuser@INGVAWX:~๏ฟฝ[azureuser@INGVAWX ~]$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
b462275ce871 ciscotestautomation/pyats-web-aggregator:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_aggregator-beat_1
5cebc81ae74a ciscotestautomation/pyats-web-aggregator:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_aggregator-celery_1
7de24138305c ciscotestautomation/pyats-web-registry:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes 8000/tcp xpresso_registry-celery_1
a1e7b7059cb2 ciscotestautomation/pyats-web-aggregator:latest "/s3/entrypoint.sh" 22 minutes ago Up 22 minutes 0.0.0.0:8926->8000/tcp xpresso_aggregator_1
27b74b73ab2f ciscotestautomation/pyats-web-client:latest "nginx -g 'daemon ofโ€ฆ" 22 minutes ago Up 22 minutes 0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp xpresso_client_1
4fc791e25ba9 ciscotestautomation/pyats-web-gateway:latest "docker-entrypoint.sโ€ฆ" 22 minutes ago Up 22 minutes xpresso_gateway_1
342c8e3c4bf0 ciscotestautomation/pyats-web-genie:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 9 seconds (health: starting) 8000/tcp xpresso_genie-beat_1
8ab0e5b88427 ciscotestautomation/pyats-web-registry:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 21 seconds 8000/tcp xpresso_registry_1
c98a12063bb7 ciscotestautomation/pyats-web-genie:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_genie-celery_1
0d5c2087b423 ciscotestautomation/pyats-web-requests:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 24 seconds (health: starting) 8000/tcp xpresso_requests-beat_1
208bef5c7de3 ciscotestautomation/pyats-web-requests:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_requests-celery_1
3421b33ff50b ciscotestautomation/pyats-web-results:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_results-celery_1
83465029ac3f ciscotestautomation/pyats-web-results:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 29 seconds (health: starting) 8000/tcp xpresso_results-beat_1
d2cda5de3866 ciscotestautomation/pyats-web-users:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up Less than a second (health: starting) 8000/tcp xpresso_users-beat_1
257b0ca01bff ciscotestautomation/pyats-web-users:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_users-celery_1
ab121f2a50da ciscotestautomation/pyats-web-laas:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 27 seconds (health: starting) 8000/tcp xpresso_laas-beat_1
91f87f2e9407 ciscotestautomation/pyats-web-laas:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_laas-celery_1
9e32b3c4bf19 ciscotestautomation/pyats-web-jenkinsengine:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_jenkinsengine-celery_1
27619506082b ciscotestautomation/pyats-web-jenkinsengine:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up Less than a second (health: starting) 8000/tcp xpresso_jenkinsengine-beat_1
f0a5e109ffe6 ciscotestautomation/pyats-web-qmgr:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 24 seconds (health: starting) 8000/tcp xpresso_qmgr-beat_1
6e5218d6c6eb ciscotestautomation/pyats-web-qmgr:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_qmgr-celery_1
160bca7d0171 ciscotestautomation/pyats-web-cdets:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 27 seconds (health: starting) 8000/tcp xpresso_cdets-beat_1
bba1dc9ac7c9 ciscotestautomation/pyats-web-cdets:latest "/s3/entrypoint.sh bโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_cdets-celery_1
5581f939a54d ciscotestautomation/pyats-web-topoman:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 2 seconds (health: starting) 8000/tcp xpresso_topoman-beat_1
17c1eecf82d7 ciscotestautomation/pyats-web-topoman:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_topoman-celery_1
432aba23d83d ciscotestautomation/pyats-web-groups:latest "/s3/entrypoint.sh cโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_groups-celery_1
67fc7363732b ciscotestautomation/pyats-web-groups:latest "/s3/entrypoint.sh wโ€ฆ" 22 minutes ago Up 3 seconds (health: starting) 8000/tcp xpresso_groups-beat_1
50224dd01106 ciscotestautomation/pyats-web-plugins:latest "/s3/entrypoint.sh" 22 minutes ago Up 1 second 8000/tcp xpresso_plugins_1
defe1205045a ciscotestautomation/pyats-web-copyservice:latest "bash ./docker-entryโ€ฆ" 22 minutes ago Up 22 minutes 9999/tcp xpresso_copyservice_1
1191c154371d ciscotestautomation/pyats-web-genie:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 31 seconds ago xpresso_genie_1
1a6ec0ad2d39 ciscotestautomation/pyats-web-auths:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 52 seconds ago xpresso_auths_1
b681d3e21255 ciscotestautomation/pyats-web-history:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 26 seconds ago xpresso_history_1
902fbae93286 ciscotestautomation/pyats-web-laas:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 28 seconds ago xpresso_laas_1
af495602137f ciscotestautomation/pyats-web-requests:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 46 seconds ago xpresso_requests_1
33cf4ff42630 ciscotestautomation/pyats-web-users:latest "/s3/entrypoint.sh" 22 minutes ago Up Less than a second 8000/tcp xpresso_users_1
ae8e327e903e ciscotestautomation/pyats-web-results2:latest "bash /src/docker-enโ€ฆ" 22 minutes ago Up 22 minutes xpresso_results2_1
3a209288e1bb ciscotestautomation/pyats-web-sessions:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 6 seconds ago xpresso_sessions_1
60545507b0f0 ciscotestautomation/pyats-web-results:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 19 seconds ago xpresso_results_1
e081b9421d4e ciscotestautomation/pyats-web-jenkinsengine:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 40 seconds ago xpresso_jenkinsengine_1
81d5b2737fe4 ciscotestautomation/pyats-web-resources:latest "docker-entrypoint.sโ€ฆ" 22 minutes ago Up 10 seconds xpresso_resources_1
1eb0743750de ciscotestautomation/pyats-web-labvpn:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 44 seconds ago xpresso_labvpn_1
06ce986277af ciscotestautomation/pyats-web-qmgr:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 35 seconds ago xpresso_qmgr_1
eafd4416ed10 ciscotestautomation/pyats-web-cdets:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 38 seconds ago xpresso_cdets_1
d7a54fd53418 ciscotestautomation/pyats-web-topoman:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 8 seconds ago xpresso_topoman_1
75727c1a1691 ciscotestautomation/pyats-web-communications:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 13 seconds ago xpresso_communications_1
9d4cbef299b9 ciscotestautomation/pyats-web-groups:latest "/s3/entrypoint.sh" 22 minutes ago Restarting (1) 50 seconds ago xpresso_groups_1
e3b3aed1fa6c ciscotestautomation/pyats-web-taas-controller:latest "/taas/entrypoint.shโ€ฆ" 22 minutes ago Restarting (1) 44 seconds ago xpresso_controller_1
e1b8bd0ae6dc ciscotestautomation/pyats-web-taas-worker:latest "/taas/entrypoint.sh" 22 minutes ago Up 22 minutes xpresso_workers_1
c260158ecebe ciscotestautomation/pyats-web-management:latest "/s3/entrypoint.sh" 22 minutes ago Up 22 minutes (healthy) 8000/tcp xpresso_management_1
f9e4cabcb1e8 ciscotestautomation/pyats-web-wsgateway:latest "bash /taas/entrypoiโ€ฆ" 22 minutes ago Up 22 minutes 0.0.0.0:8927->8000/tcp xpresso_wsgateway_1
3a231fcf9a74 redis:3.2 "docker-entrypoint.sโ€ฆ" 22 minutes ago Up 22 minutes 6379/tcp xpresso_cache_1
6294ef7c38d0 mysql/mysql-server:8.0 "/entrypoint.sh mysqโ€ฆ" 22 minutes ago Up 22 minutes (healthy) 3306/tcp, 33060-33061/tcp xpresso_database_1
dcee625a9016 docker.elastic.co/elasticsearch/elasticsearch:7.6.0 "/usr/local/bin/dockโ€ฆ" 22 minutes ago Up Less than a second 9200/tcp, 9300/tcp xpresso_elasticsearch_1
๏ฟฝ]0;azureuser@INGVAWX:~๏ฟฝ[azureuser@INGVAWX ~]$ docker ps๏ฟฝ๏ฟฝlogs -f xpresso_users_1 ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ[Kxpresso_database_1
[Entrypoint] MySQL Docker Image 8.0.26-1.2.4-server
[Entrypoint] Starting MySQL 8.0.26-1.2.4-server
^C
๏ฟฝ]0;azureuser@INGVAWX:~๏ฟฝ[azureuser@INGVAWX ~]$ docker logs -f xpresso_database_1๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ[Kxpresso_management_1
Connection alive for > 0s
Connection alive for > 1s
Connection alive for > 2s
Connection alive for > 3s
Connection alive for > 4s
Connection alive for > 5s
29/07/2021 09:50:29 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:29 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:29 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:29 [DEBUG] docker.utils.config.find_config_file(): No config file found
Operations to perform:
Apply all migrations: auth, contenttypes, exception_mgr, settings_mgr
Running migrations:
No migrations to apply.
29/07/2021 09:50:35 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:35 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:35 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:35 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:35 [INFO] settings_mgr.management.commands.init_settings.execute(): Initializing mgmt settings...
29/07/2021 09:50:37 [INFO] settings_mgr.management.commands.init_settings.execute(): Successfully populated init settings.
[2021-07-29 09:50:37 +0000] [1] [DEBUG] Current configuration:
threads: 1
pythonpath: None
reload: False
enable_stdio_inheritance: False
reload_engine: auto
certfile: None
post_fork: <function Postfork.post_fork at 0x7f5db66d9598>
syslog_addr: udp://localhost:514
daemon: False
worker_tmp_dir: None
limit_request_line: 4094
pre_fork: <function Prefork.pre_fork at 0x7f5db66d9400>
worker_exit: <function WorkerExit.worker_exit at 0x7f5db66de268>
workers: 3
raw_env: []
pidfile: None
umask: 0
pre_exec: <function PreExec.pre_exec at 0x7f5db66d9bf8>
pre_request: <function PreRequest.pre_request at 0x7f5db66d9d90>
max_requests_jitter: 0
ca_certs: None
limit_request_fields: 100
statsd_prefix:
raw_paste_global_conf: []
timeout: 30
bind: ['0.0.0.0:8000']
logger_class: gunicorn.glogging.Logger
keyfile: None
cert_reqs: 0
config: /s3/etc/gunicorn_config.py
tmp_upload_dir: None
check_config: False
forwarded_allow_ips: ['127.0.0.1']
on_reload: <function OnReload.on_reload at 0x7f5db66d90d0>
proc_name: None
chdir: /s3/src
initgroups: False
limit_request_field_size: 8190
graceful_timeout: 30
nworkers_changed: <function NumWorkersChanged.nworkers_changed at 0x7f5db66de400>
worker_class: sync
accesslog: None
backlog: 2048
do_handshake_on_connect: False
preload_app: False
user: 0
secure_scheme_headers: {'X-FORWARDED-PROTO': 'https', 'X-FORWARDED-SSL': 'on', 'X-FORWARDED-PROTOCOL': 'ssl'}
statsd_host: None
worker_connections: 1000
sendfile: None
default_proc_name: wsgi:application
loglevel: debug
capture_output: False
on_starting: <function OnStarting.on_starting at 0x7f5db66d2ea0>
when_ready: <function WhenReady.when_ready at 0x7f5db66d9268>
suppress_ragged_eofs: True
post_worker_init: <function PostWorkerInit.post_worker_init at 0x7f5db66d9730>
worker_int: <function WorkerInt.worker_int at 0x7f5db66d98c8>
on_exit: <function OnExit.on_exit at 0x7f5db66de598>
group: 0
proxy_allow_ips: ['127.0.0.1']
access_log_format: %(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"
errorlog: -
syslog_facility: user
max_requests: 0
logconfig: None
post_request: <function PostRequest.post_request at 0x7f5db66d9ea0>
ssl_version: 2
child_exit: <function ChildExit.child_exit at 0x7f5db66de0d0>
syslog_prefix: None
spew: False
keepalive: 2
paste: None
worker_abort: <function WorkerAbort.worker_abort at 0x7f5db66d9a60>
ciphers: TLSv1
syslog: False
proxy_protocol: False
[2021-07-29 09:50:37 +0000] [1] [INFO] Starting gunicorn 19.7.1
[2021-07-29 09:50:37 +0000] [1] [DEBUG] Arbiter booted
[2021-07-29 09:50:37 +0000] [1] [INFO] Listening at: http://0.0.0.0:8000 (1)
[2021-07-29 09:50:37 +0000] [1] [INFO] Using worker: sync
[2021-07-29 09:50:37 +0000] [15] [INFO] Booting worker with pid: 15
[2021-07-29 09:50:37 +0000] [16] [INFO] Booting worker with pid: 16
[2021-07-29 09:50:37 +0000] [18] [INFO] Booting worker with pid: 18
[2021-07-29 09:50:37 +0000] [1] [DEBUG] 3 workers
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): No config file found
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): Trying paths: ['/root/.docker/config.json', '/root/.dockercfg']
29/07/2021 09:50:38 [DEBUG] docker.utils.config.find_config_file(): No config file found
^C
๏ฟฝ]0;azureuser@INGVAWX:~๏ฟฝ[azureuser@INGVAWX ~]$ docker logs -f xpresso_management_1๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ๏ฟฝ[Kxpresso_genie-beat_1
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
wait-for-it.sh: waiting 30 seconds for genie:8000
wait-for-it.sh: timeout occurred after waiting 30 seconds for genie:8000
wait-for-it.sh: strict mode, refusing to execute subprocess
๏ฟฝ]0;azureuser@INGVAWX:~๏ฟฝ[azureuser@INGVAWX ~]$

+++++++

admin/admin not working

I just got xpresso version 21.8 installed yesterday and have been attempting to login using admin/admin.
It has been running over night.
I can bring up the login page without issue but when I try to login using admin/admin it gives me a login failed error.
image

Note: the VERSION file says 20.12.

Thanks.
Glenn...

No Resources found error after login

After logging into the xpresso, I see there is an which pops out "No Resources found"

I even tried restarting the resources using below command,
docker-compose restart resources

Version:21.3

Unexpected token N in JSON at position 0

Hey Guys,

I was able to successfully trigger my scripts as a jenkins job, But the problem which I face is I don't see the old requests which I triggered and I see this below error in the requests page.

Unexpected token N in JSON at position 0

Version:21.3

Unable to build docker images [ERROR] asyncio.default_exception_handler(): Job processing failed

When attempting to build a new image the process never completes properly. in the GUI it stays in the "build" status indefinitely. I tried using the YAML from the devnet sandbox to build an image as well as one of my own.

Since it mentioned a client connection problem, I tried setting the advertised URL to localhost as well as the IP of the machine. I am running this on the latest docker and macOS 10.15.6

workers_1               | 23/10/2020 16:10:41 [INFO] pyatsimagebuilder.builder.run(): Built image 'xpresso-test2:latest' successfully
workers_1               | 23/10/2020 16:10:41 [INFO] pyatsimagebuilder.builder.run(): Removing context directory
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log(): Uploading file logs...
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log_json(): Uploading back to genie service: http://localhost/api/v1/images/upload
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log_json(): Uploading-image: 5e219c99-45d4-4540-af88-228e5d18b85a
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log_json(): Upload-headers: {'Content-Type': 'application/json', 'Authorization': 'Jwt eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJvcmlnX2lhdCI6MTYwMzM4MjYxNCwidXNlcm5hbWUiOiJzYmVhdWNoYW1wIiwic2Vzc2lvbl9pZCI6InNlc3Npb25zOmNlZDMzOTBjLTk2NDAtNDM1Ny1hMzc5LTBmNDVlOWUxNjcwMiIsImV4cCI6NDc1Njk4MjYxNCwidG9rZW5fdHlwZSI6ImF1dG9tYXRpb24tdG9rZW4ifQ.vmNUjJb4Cy-v3N3zWqN51sCw5jsud2TbtIG5yH0cuWz089IbtpB7_XBuobnOet-r2CP2H1AySjkpC_pZDmYGqqTP3GXQ0yWfnE7sbh6ZxuTyjfgH1xQ89MPUZPrbCkytITMGvzna2VddVjLofPXCPXgl2Aizzq5KrW0XZTRrx0Nu154Nzjx29KRCtJNBC3MPWlYLe2Iw9D-lMnBe2OixSbvFP-HpfykBVZ8Ia8E28UGmtczwWZdB93h2fvGJaChLAaCBSSAG9AV80cYDQi4KTWlAfwC4A54OgLXi45K8m0vUp889ApBK4xs1YTeyzB1rcDzRGS5vUfKXS67V4MWoQA'}
workers_1               | 23/10/2020 16:10:41 [ERROR] apps.build_image.build_pyats_image(): Image building failed
workers_1               | Traceback (most recent call last):
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 936, in _wrap_create_connection
workers_1               |     return await self._loop.create_connection(*args, **kwargs)  # type: ignore  # noqa
workers_1               |   File "/usr/local/lib/python3.8/asyncio/base_events.py", line 1025, in create_connection
workers_1               |     raise exceptions[0]
workers_1               |   File "/usr/local/lib/python3.8/asyncio/base_events.py", line 1010, in create_connection
workers_1               |     sock = await self._connect_sock(
workers_1               |   File "/usr/local/lib/python3.8/asyncio/base_events.py", line 924, in _connect_sock
workers_1               |     await self.sock_connect(sock, address)
workers_1               |   File "/usr/local/lib/python3.8/asyncio/selector_events.py", line 494, in sock_connect
workers_1               |     return await fut
workers_1               |   File "/usr/local/lib/python3.8/asyncio/selector_events.py", line 499, in _sock_connect
workers_1               |     sock.connect(address)
workers_1               | OSError: [Errno 99] Cannot assign requested address
workers_1               | 
workers_1               | The above exception was the direct cause of the following exception:
workers_1               | 
workers_1               | Traceback (most recent call last):
workers_1               |   File "/s3/src/apps/build_image.py", line 225, in build_pyats_image
workers_1               |     await upload_log(f_name, data)
workers_1               |   File "/s3/src/apps/build_image.py", line 96, in upload_log
workers_1               |     return await upload_log_json(ret, data)
workers_1               |   File "/s3/src/apps/build_image.py", line 64, in upload_log_json
workers_1               |     async with session.post(url,
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/client.py", line 1012, in __aenter__
workers_1               |     self._resp = await self._coro
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/client.py", line 480, in _request
workers_1               |     conn = await self._connector.connect(
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 523, in connect
workers_1               |     proto = await self._create_connection(req, traces, timeout)
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 858, in _create_connection
workers_1               |     _, proto = await self._create_direct_connection(
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 1004, in _create_direct_connection
workers_1               |     raise last_exc
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 980, in _create_direct_connection
workers_1               |     transp, proto = await self._wrap_create_connection(
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 943, in _wrap_create_connection
workers_1               |     raise client_error(req.connection_key, exc) from exc
workers_1               | aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host localhost:80 ssl:None [Cannot assign requested address]
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log(): Uploading file logs...
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log_json(): Uploading back to genie service: http://localhost/api/v1/images/upload
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log_json(): Uploading-image: 5e219c99-45d4-4540-af88-228e5d18b85a
workers_1               | 23/10/2020 16:10:41 [INFO] apps.build_image.upload_log_json(): Upload-headers: {'Content-Type': 'application/json', 'Authorization': 'Jwt eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJvcmlnX2lhdCI6MTYwMzM4MjYxNCwidXNlcm5hbWUiOiJzYmVhdWNoYW1wIiwic2Vzc2lvbl9pZCI6InNlc3Npb25zOmNlZDMzOTBjLTk2NDAtNDM1Ny1hMzc5LTBmNDVlOWUxNjcwMiIsImV4cCI6NDc1Njk4MjYxNCwidG9rZW5fdHlwZSI6ImF1dG9tYXRpb24tdG9rZW4ifQ.vmNUjJb4Cy-v3N3zWqN51sCw5jsud2TbtIG5yH0cuWz089IbtpB7_XBuobnOet-r2CP2H1AySjkpC_pZDmYGqqTP3GXQ0yWfnE7sbh6ZxuTyjfgH1xQ89MPUZPrbCkytITMGvzna2VddVjLofPXCPXgl2Aizzq5KrW0XZTRrx0Nu154Nzjx29KRCtJNBC3MPWlYLe2Iw9D-lMnBe2OixSbvFP-HpfykBVZ8Ia8E28UGmtczwWZdB93h2fvGJaChLAaCBSSAG9AV80cYDQi4KTWlAfwC4A54OgLXi45K8m0vUp889ApBK4xs1YTeyzB1rcDzRGS5vUfKXS67V4MWoQA'}
workers_1               | 23/10/2020 16:10:41 [ERROR] asyncio.default_exception_handler(): Job processing failed
workers_1               | job: <Job coro=<<coroutine object build_pyats_image at 0x7f8bc1bd0e40>>>
workers_1               | Traceback (most recent call last):
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 936, in _wrap_create_connection
workers_1               |     return await self._loop.create_connection(*args, **kwargs)  # type: ignore  # noqa
workers_1               |   File "/usr/local/lib/python3.8/asyncio/base_events.py", line 1025, in create_connection
workers_1               |     raise exceptions[0]
workers_1               |   File "/usr/local/lib/python3.8/asyncio/base_events.py", line 1010, in create_connection
workers_1               |     sock = await self._connect_sock(
workers_1               |   File "/usr/local/lib/python3.8/asyncio/base_events.py", line 924, in _connect_sock
workers_1               |     await self.sock_connect(sock, address)
workers_1               |   File "/usr/local/lib/python3.8/asyncio/selector_events.py", line 494, in sock_connect
workers_1               |     return await fut
workers_1               |   File "/usr/local/lib/python3.8/asyncio/selector_events.py", line 499, in _sock_connect
workers_1               |     sock.connect(address)
workers_1               | OSError: [Errno 99] Cannot assign requested address
workers_1               | 
workers_1               | The above exception was the direct cause of the following exception:
workers_1               | 
workers_1               | Traceback (most recent call last):
workers_1               |   File "/s3/src/apps/build_image.py", line 240, in build_pyats_image
workers_1               |     await upload_log(f_name, data)
workers_1               |   File "/s3/src/apps/build_image.py", line 96, in upload_log
workers_1               |     return await upload_log_json(ret, data)
workers_1               |   File "/s3/src/apps/build_image.py", line 64, in upload_log_json
workers_1               |     async with session.post(url,
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/client.py", line 1012, in __aenter__
workers_1               |     self._resp = await self._coro
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/client.py", line 480, in _request
workers_1               |     conn = await self._connector.connect(
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 523, in connect
workers_1               |     proto = await self._create_connection(req, traces, timeout)
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 858, in _create_connection
workers_1               |     _, proto = await self._create_direct_connection(
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 1004, in _create_direct_connection
workers_1               |     raise last_exc
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 980, in _create_direct_connection
workers_1               |     transp, proto = await self._wrap_create_connection(
workers_1               |   File "/usr/local/lib/python3.8/site-packages/aiohttp/connector.py", line 943, in _wrap_create_connection
workers_1               |     raise client_error(req.connection_key, exc) from exc
workers_1               | aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host localhost:80 ssl:None [Cannot assign requested address]

YAML from sandbox

packages:  - 'pyats[full]'
  - tabulate
  - rest.connector
jobfiles:
  match:
    - .*_?job\.py
repositories:
  examples:
    url: 'https://github.com/CiscoTestAutomation/examples'
  soution_examples:
    url: 'https://github.com/CiscoTestAutomation/solutions_examples'
tag: 'pyats-sandbox-image:latest'

YAML of my own

packages:
  - 'pyats[full]'
jobfiles:
  match:
    - .*_?job\.py
repositories:
  examples:
    url: 'https://github.com/sethbeauchamp/xpresso-test'
tag: 'xpresso-test:latest'

Xpresso error installation | No Resources found

I'm following the installation steps with the shell script ./setup.sh
image

I got the next error:
image

In the common errors section, I'm restartint suggested module, but still the problem persists:
image

image

The logs from "resources" have this information:
image

Elasticsearch is not starting properly:
image

Elasticsearch logs:
image

But, I also followed the steps for this issue:
image

image
image

My VM is a RedHat 8.8 with 16 CPUs and 64GB of RAM

pyATS docker image import issue

I am trying to import the pyATS docker image from the docker hub(https://hub.docker.com/r/ciscotestautomation/pyats) and it's failing.

Seems like the image is pulled as I see it in docker image repositories, but for some reason, it's failing to spin up a new container

following are the error message I see it in the worker logs

UI Logs:-

[Errno 2] No such file or directory: '/s3/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json':

Worker Logs:-

30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"2a98eed6e26a"}}}}]------------------------------->Image Pull completed.
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Digest: sha256:dbb5936db4bbfb45493b82942c6143dea1e113820a24a4f8abec4c112f1e51c3"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Status: Downloaded newer image for ciscotestautomation/pyats:latest"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"status","status":"registering","body":{"Id":"sha256:48c5766b958d1ee5a4a710d01c8e7f44505ef1573000d9a3fe42f157346657c6","RepoTags":["ciscotestautomation/pyats:latest"],"RepoDigests":["ciscotestautomation/pyats@sha256:dbb5936db4bbfb45493b82942c6143dea1e113820a24a4f8abec4c112f1e51c3"],"Parent":"","Comment":"","Created":"2021-07-29T14:43:49.777436171Z","Container":"","ContainerConfig":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":null,"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":null},"DockerVersion":"","Author":"","Config":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","LANG=C.UTF-8","GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D","PYTHON_VERSION=3.6.14","PYTHON_PIP_VERSION=21.1.3","PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py","PYTHON_GET_PIP_SHA256=6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7","WORKSPACE=/pyats"],"Cmd":["python"],"Image":"","Volumes":null,"WorkingDir":"/pyats","Entrypoint":["/bin/tini","--","/entrypoint.sh"],"OnBuild":null,"Labels":{"maintainer":"pyATS Support [email protected]"}},"Architecture":"amd64","Os":"linux","Size":554898246,"VirtualSize":554898246,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/cf5877434190aa4e75a5e94368770517544c14d302cc1a087aeac7de2a6d0e51/diff:/var/lib/docker/overlay2/49b428c40a3326ea2631a11f1d1c3e050ede87b0380a99984a8e4c1beda9f5a9/diff:/var/lib/docker/overlay2/457a57bc49902fc2db920e83bcbe02a77db2d73bcf2df5a698140bd3a08e7770/diff:/var/lib/docker/overlay2/41633763dfffae13ca344150ab338fc55b6319ca15f6fc850beb61f094d62625/diff:/var/lib/docker/overlay2/a298af82d632ebc75984a3b8397bb9325ab96a124fab1238bdf33b95249ec953/diff:/var/lib/docker/overlay2/1f9cadd7a0a693b40d45e95ec1d084fbd5e2d79a2979e21f973ad9d0e7a376bb/diff:/var/lib/docker/overlay2/eb4429af5a05a053002f2ee61842b3117848dd1c15a308d295c5de4c9b671300/diff:/var/lib/docker/overlay2/62ef5eddcd8f327bcacd3fa697fab4461683b549abbbd2fb4a2ab9e8aadeec4a/diff:/var/lib/docker/overlay2/1e4130fd69aabcf3c131b4a9986dd139134d5573a3571d9dd6fa053d37f70db4/diff:/var/lib/docker/overlay2/ba08bfcecff3df14e5a31afb0c5b158bb63706fb210ff098cb0ab9ed40f2d15f/diff","MergedDir":"/var/lib/docker/overlay2/822e53df0c86e8a7b988187db9c42ca37f97885ac56cd03480fbbbb85245b20f/merged","UpperDir":"/var/lib/docker/overlay2/822e53df0c86e8a7b988187db9c42ca37f97885ac56cd03480fbbbb85245b20f/diff","WorkDir":"/var/lib/docker/overlay2/822e53df0c86e8a7b988187db9c42ca37f97885ac56cd03480fbbbb85245b20f/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:764055ebc9a7a290b64d17cf9ea550f1099c202d83795aa967428ebdf335c9f7","sha256:537313a13d9080fc30444461b8aac5f03b9cbb0e2352b3c3098d5eca5f42688f","sha256:ed0eb1716da6150e8be63ddfd8b35a3be80c4bd11122d94b41a45ddcad04244b","sha256:11655fc03e45deb48d84c8be1c2b86166a141597227bc8e9f7f0bde0719ab398","sha256:d2b1546458b3461526a93f119de7d12d8309f177b6bc4572e93588a514fd495f","sha256:ac0d22c2a2932e52ee40c8c145bad48d4bd292de3d2f9ca9f93d4fbdf862aed3","sha256:4b859d3263d5439eee68c1ed349d23e4ce63db6dccc1d78b0079d0129dcec136","sha256:b97bfaaa7e5e2e031160a5f55f747b277f266a0c3b7c89b8c635fb274e0c1753","sha256:b56a89dfb88ae1642f9c0c0d4cdd322de5019b3ad63f8b519f70f9a58487f79e","sha256:8932c21dcee62874d02899d2222578f9daa559808f0ff3fd7b19db2ed7b94da1","sha256:72d19c5875866ec174a5dd4451350c2029de1691504cff0f328c3ad9d95aec26"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"}}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_build","response":{"type":"status","status":"registering","body":"Discoverying jobs for image ciscotestautomation/pyats:latest"}}}]
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.fix_config(): Fname: /s3/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.py
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.fix_config(): Cmd: import json; import os; f = open("%s/installation/jobfiles.txt" % os.getenv("WORKSPACE")); content = json.dumps(json.loads(f.read())); print(content); f.close(); f = open("/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json", "w"); f.write(content); f.close();
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.fix_config(): Internal-output: /job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.discover_jobs(): Name: job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.discover_jobs(): Config: {'Cmd': ['python', '/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.py'], 'Image': 'ciscotestautomation/pyats:latest', 'AttachStdin': True, 'AttachStdout': True, 'AttachStderr': True, 'Tty': False, 'StdinOnce': True, 'OpenStdin': True, 'HostConfig': {'Binds': ['/home/azureuser/xpresso-pyats/workspace/xpresso/data/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9:/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9']}, 'Labels': {'com.pyats.worker': 'pyats-worker-1'}}
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.discover_jobs(): Output_file: /s3/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json
30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): [Entrypoint] Starting pyATS Docker Image ...

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): [Entrypoint] Workspace Directory: /pyats

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): [Entrypoint] Activating workspace

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): Traceback (most recent call last):

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): File "/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.py", line 1, in

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): import json; import os; f = open("%s/installation/jobfiles.txt" % os.getenv("WORKSPACE")); content = json.dumps(json.loads(f.read())); print(content); f.close(); f = open("/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json", "w"); f.write(content); f.close();

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): FileNotFoundError: [Errno 2] No such file or directory: '/pyats/installation/jobfiles.txt'

+++++++++++++++++FULL WORKER LOGS+++++++++++++++++++++++++++++++++++

============ PuTTY log 2021.07.30 14:30:14 ============
docker logs -f xpresso_workers_1
[2021-07-30 07:44:51 +0000] [1] [DEBUG] Current configuration:
config: /taas/etc/gunicorn_config.py
bind: ['0.0.0.0:8000']
backlog: 2048
workers: 1
worker_class: aiohttp.GunicornWebWorker
threads: 1
worker_connections: 1000
max_requests: 0
max_requests_jitter: 0
timeout: 30
graceful_timeout: 30
keepalive: 2
limit_request_line: 4094
limit_request_fields: 100
limit_request_field_size: 8190
reload: False
reload_engine: auto
reload_extra_files: []
spew: False
check_config: False
preload_app: False
sendfile: None
reuse_port: False
chdir: /taas/src
daemon: False
raw_env: []
pidfile: None
worker_tmp_dir: None
user: 0
group: 0
umask: 0
initgroups: False
tmp_upload_dir: None
secure_scheme_headers: {'X-FORWARDED-PROTOCOL': 'ssl', 'X-FORWARDED-PROTO': 'https', 'X-FORWARDED-SSL': 'on'}
forwarded_allow_ips: ['127.0.0.1']
accesslog: None
disable_redirect_access_to_syslog: False
access_log_format: %(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"
errorlog: -
loglevel: debug
capture_output: False
logger_class: gunicorn.glogging.Logger
logconfig: None
logconfig_dict: {}
syslog_addr: udp://localhost:514
syslog: False
syslog_prefix: None
syslog_facility: user
enable_stdio_inheritance: False
statsd_host: None
dogstatsd_tags:
statsd_prefix:
proc_name: None
default_proc_name: apps.main:create_app
pythonpath: None
paste: None
on_starting: <function OnStarting.on_starting at 0x7f654e3bf040>
on_reload: <function OnReload.on_reload at 0x7f654e3bf160>
when_ready: <function WhenReady.when_ready at 0x7f654e3bf280>
pre_fork: <function Prefork.pre_fork at 0x7f654e3bf3a0>
post_fork: <function Postfork.post_fork at 0x7f654e3bf4c0>
post_worker_init: <function PostWorkerInit.post_worker_init at 0x7f654e3bf5e0>
worker_int: <function WorkerInt.worker_int at 0x7f654e3bf700>
worker_abort: <function WorkerAbort.worker_abort at 0x7f654e3bf820>
pre_exec: <function PreExec.pre_exec at 0x7f654e3bf940>
pre_request: <function PreRequest.pre_request at 0x7f654e3bfa60>
post_request: <function PostRequest.post_request at 0x7f654e3bfaf0>
child_exit: <function ChildExit.child_exit at 0x7f654e3bfc10>
worker_exit: <function WorkerExit.worker_exit at 0x7f654e3bfd30>
nworkers_changed: <function NumWorkersChanged.nworkers_changed at 0x7f654e3bfe50>
on_exit: <function OnExit.on_exit at 0x7f654e3bff70>
proxy_protocol: False
proxy_allow_ips: ['127.0.0.1']
keyfile: None
certfile: None
ssl_version: 2
cert_reqs: 0
ca_certs: None
suppress_ragged_eofs: True
do_handshake_on_connect: False
ciphers: None
raw_paste_global_conf: []
strip_header_spaces: False
[2021-07-30 07:44:51 +0000] [1] [INFO] Starting gunicorn 20.0.3
[2021-07-30 07:44:51 +0000] [1] [DEBUG] Arbiter booted
[2021-07-30 07:44:51 +0000] [1] [INFO] Listening at: http://0.0.0.0:8000 (1)
[2021-07-30 07:44:51 +0000] [1] [INFO] Using worker: aiohttp.GunicornWebWorker
[2021-07-30 07:44:51 +0000] [10] [INFO] Booting worker with pid: 10
[2021-07-30 07:44:51 +0000] [1] [DEBUG] 1 workers
30/07/2021 07:44:53 [DEBUG] apps.main.get_worker_id(): [Errno 17] File exists: '/s3/workers/ALL_ALL_pyats-worker-1'
30/07/2021 07:44:53 [INFO] apps.main.get_worker_id(): UUID-Path: /s3/workers/ALL_ALL_pyats-worker-1/uuid.txt
30/07/2021 07:44:53 [INFO] apps.main.get_worker_id(): Worker-id: 0f7f9f7e-307e-4dc8-8e64-50081646126d
30/07/2021 07:44:53 [INFO] taas_common.events.gateway_interface.gateway_interface.connect(): Connecting to WS gateway...
30/07/2021 07:44:53 [INFO] engineio.client._connect_websocket(): Attempting WebSocket connection to ws://localhost:8927/socket.io/?transport=websocket&EIO=3
30/07/2021 07:44:53 [INFO] engineio.client._connect_websocket(): WebSocket connection accepted with {'sid': '9900ea3ba0af41099ec56bc4cb4efd89', 'upgrades': [], 'pingTimeout': 60000, 'pingInterval': 25000}
30/07/2021 07:44:53 [INFO] socketio.client._handle_eio_connect(): Engine.IO connection established
30/07/2021 07:44:53 [INFO] taas_common.events.gateway_interface.gateway_interface.connect(): Checking connection...
30/07/2021 07:44:53 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:44:53 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 0
30/07/2021 07:44:53 [INFO] socketio.client._handle_connect(): Namespace / is connected
30/07/2021 07:44:53 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 0/worker
30/07/2021 07:44:53 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:44:53 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 0/worker
30/07/2021 07:44:53 [INFO] socketio.client._handle_connect(): Namespace /worker is connected
30/07/2021 07:44:53 [INFO] taas_common.events.gateway_interface.gateway_interface._connected(): GatewayInterface connected
30/07/2021 07:44:53 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=connect data=None
30/07/2021 07:44:53 [INFO] apps.socket_handlers.commands.handle_event(): setting healthy to True
30/07/2021 07:44:53 [INFO] socketio.client.emit(): Emitting event "worker_registery" [/worker]
30/07/2021 07:44:53 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2/worker,["worker_registery",{"app_label":"pyats-worker-1","site":"ALL","bldg":"ALL","service_name":"pyats-worker-1","service_url":"http://10.161.31.44/:8925/workers/api/v1","interest_list":[],"group":"general","caps":["pyats","image"],"worker_id":"0f7f9f7e-307e-4dc8-8e64-50081646126d"}]
30/07/2021 07:44:53 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2/worker,["worker_registery",{"ack":true}]
30/07/2021 07:44:53 [INFO] socketio.client._handle_event(): Received event "worker_registery" [/worker]
30/07/2021 07:44:53 [INFO] taas_common.events.gateway_interface.gateway_interface._registered(): Worker registered
30/07/2021 07:44:53 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=worker_registery data={'ack': True}
30/07/2021 07:44:53 [INFO] taas_common.events.gateway_interface.gateway_interface.connect(): Connection established
30/07/2021 07:44:53 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:44:53 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:44:54 [ERROR] apps.tasks.cleanup_containers(): Deletion of container skipped because of 'Config'
30/07/2021 07:45:18 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:45:18 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:45:23 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:45:23 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:45:43 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:45:43 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:45:53 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:45:53 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:46:08 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:46:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:46:23 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:46:23 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:46:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:46:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:46:53 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:46:53 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:46:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:46:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:47:23 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:47:23 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:47:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:47:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:47:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:47:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:47:53 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:47:53 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:48:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:48:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:48:23 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:48:23 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:48:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:48:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:48:53 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:48:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:49:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:49:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:49:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:49:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:49:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:49:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:49:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:49:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:49:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:49:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:50:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:50:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:50:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:50:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:50:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:50:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:50:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:50:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:51:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:51:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:51:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:51:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:51:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:51:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:51:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:51:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:51:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:51:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:52:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:52:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:52:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:52:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:52:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:52:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:52:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:52:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:53:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:53:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:53:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:53:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:53:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:53:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:53:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:53:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:54:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:54:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:54:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:54:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:54:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:54:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:54:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:54:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:54:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:54:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:55:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:55:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:55:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:55:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:55:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:55:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:55:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:55:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:56:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:56:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:56:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:56:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:56:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:56:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:56:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:56:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:56:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:56:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:57:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:57:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:57:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:57:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:57:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:57:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:57:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:57:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:58:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:58:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:58:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:58:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:58:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:58:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:58:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:58:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:59:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:59:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:59:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:59:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:59:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:59:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 07:59:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 07:59:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 07:59:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 07:59:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:00:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:00:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:00:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:00:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:00:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:00:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:00:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:00:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:01:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:01:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:01:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:01:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:01:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:01:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:01:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:01:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:01:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:01:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:02:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:02:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:02:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:02:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:02:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:02:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:02:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:02:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:03:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:03:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:03:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:03:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:03:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:03:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:03:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:03:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:04:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:04:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:04:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:04:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:04:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:04:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:04:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:04:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:04:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:04:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:05:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:05:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:05:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:05:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:05:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:05:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:05:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:05:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:06:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:06:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:06:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:06:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:06:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:06:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:06:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:06:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:06:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:06:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:07:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:07:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:07:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:07:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:07:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:07:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:07:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:07:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:08:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:08:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:08:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:08:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:08:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:08:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:08:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:08:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:09:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:09:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:09:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:09:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:09:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:09:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:09:33 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","body":{"tag":"latest","uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","pin_version":true,"name":"pyats","discover":true,"credentials":"bnVsbA==","push_url":"https://hub.docker.com/r/ciscotestautomation/pyats"}}}]
30/07/2021 08:09:33 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:09:33 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats'}}}
30/07/2021 08:09:33 [INFO] apps.socket_handlers.images.image_pull(): Pulling image: {'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats'}}}
30/07/2021 08:09:33 [INFO] apps.store.aenter(): enter ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:09:33 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:09:33 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","response":{"type":"status","status":"failed","body":"DockerError(400, 'invalid reference format')"}}}]
30/07/2021 08:09:33 [INFO] apps.store.aexit(): exit 1:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801 2:(None, None, None) 3:{}
30/07/2021 08:09:33 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image"}}]
30/07/2021 08:09:33 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:09:33 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'cleanup_image'}}
30/07/2021 08:09:33 [INFO] apps.socket_handlers.images.cleanup_image(): cleaning up task:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:09:33 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:09:33 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image","response":{"type":"status","status":"done","body":{}}}}]
30/07/2021 08:09:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:09:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:09:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:09:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:10:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:10:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:10:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:10:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:10:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:10:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:10:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:10:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:11:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:11:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:11:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:11:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:11:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:11:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:11:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:11:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:11:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:11:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:12:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:12:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:12:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:12:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:12:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:12:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:12:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:12:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:13:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:13:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:13:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:13:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:13:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:13:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:13:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:13:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:14:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:14:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:14:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:14:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:14:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:14:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:14:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:14:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:14:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:14:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:15:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:15:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:15:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:15:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:15:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:15:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:15:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:15:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:16:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:16:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:16:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:16:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:16:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:16:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:16:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:16:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:16:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:16:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:17:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:17:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:17:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:17:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:17:43 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","body":{"tag":"latest","uuid":"47634f17-fe9c-4858-b794-9100fd80168f","pin_version":true,"name":"pyats","discover":true,"credentials":"bnVsbA==","push_url":"https://hub.docker.com/r/ciscotestautomation/pyats:latest"}}}]
30/07/2021 08:17:43 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:17:43 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '47634f17-fe9c-4858-b794-9100fd80168f', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats:latest'}}}
30/07/2021 08:17:43 [INFO] apps.socket_handlers.images.image_pull(): Pulling image: {'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '47634f17-fe9c-4858-b794-9100fd80168f', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats:latest'}}}
30/07/2021 08:17:43 [INFO] apps.store.aenter(): enter ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:17:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:17:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","response":{"type":"status","status":"failed","body":"DockerError(400, 'invalid reference format')"}}}]
30/07/2021 08:17:43 [INFO] apps.store.aexit(): exit 1:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801 2:(None, None, None) 3:{}
30/07/2021 08:17:43 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image"}}]
30/07/2021 08:17:43 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:17:43 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'cleanup_image'}}
30/07/2021 08:17:43 [INFO] apps.socket_handlers.images.cleanup_image(): cleaning up task:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:17:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:17:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image","response":{"type":"status","status":"done","body":{}}}}]
30/07/2021 08:17:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:17:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:17:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:17:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:18:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:18:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:18:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:18:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:18:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:18:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:18:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:18:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:19:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:19:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:19:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:19:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:19:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:19:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:19:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:19:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:19:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:19:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:20:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:20:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:20:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:20:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:20:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:20:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:20:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:20:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:21:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:21:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:21:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:21:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:21:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:21:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:21:43 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","body":{"tag":"latest","uuid":"47634f17-fe9c-4858-b794-9100fd80168f","pin_version":true,"name":"pyats","discover":true,"credentials":"bnVsbA==","push_url":"https://hub.docker.com/r/ciscotestautomation/pyats:latest"}}}]
30/07/2021 08:21:43 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:21:43 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '47634f17-fe9c-4858-b794-9100fd80168f', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats:latest'}}}
30/07/2021 08:21:43 [INFO] apps.socket_handlers.images.image_pull(): Pulling image: {'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '47634f17-fe9c-4858-b794-9100fd80168f', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats:latest'}}}
30/07/2021 08:21:43 [INFO] apps.store.aenter(): enter ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:21:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:21:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","response":{"type":"status","status":"failed","body":"DockerError(400, 'invalid reference format')"}}}]
30/07/2021 08:21:43 [INFO] apps.store.aexit(): exit 1:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801 2:(None, None, None) 3:{}
30/07/2021 08:21:43 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image"}}]
30/07/2021 08:21:43 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:21:43 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'cleanup_image'}}
30/07/2021 08:21:43 [INFO] apps.socket_handlers.images.cleanup_image(): cleaning up task:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:21:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:21:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image","response":{"type":"status","status":"done","body":{}}}}]
30/07/2021 08:21:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:21:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:21:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:21:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:22:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:22:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:22:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:22:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:22:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:22:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:22:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:22:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:23:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:23:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:23:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:23:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:23:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:23:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:23:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:23:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:24:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:24:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:24:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:24:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:24:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:24:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:24:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:24:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:24:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:24:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:25:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:25:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:25:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:25:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:25:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:25:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:25:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:25:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:26:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:26:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:26:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:26:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:26:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:26:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:26:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:26:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:26:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:26:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:27:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:27:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:27:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:27:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:27:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:27:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:27:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:27:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:28:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:28:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:28:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:28:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:28:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:28:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:28:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:28:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:29:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:29:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:29:24 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","body":{"tag":"latest","uuid":"47634f17-fe9c-4858-b794-9100fd80168f","pin_version":true,"name":"pyats","discover":true,"credentials":"bnVsbA==","push_url":"https://hub.docker.com/r/ciscotestautomation/pyats:latest"}}}]
30/07/2021 08:29:24 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:29:24 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '47634f17-fe9c-4858-b794-9100fd80168f', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats:latest'}}}
30/07/2021 08:29:24 [INFO] apps.socket_handlers.images.image_pull(): Pulling image: {'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '47634f17-fe9c-4858-b794-9100fd80168f', 'pin_version': True, 'name': 'pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': 'https://hub.docker.com/r/ciscotestautomation/pyats:latest'}}}
30/07/2021 08:29:24 [INFO] apps.store.aenter(): enter ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:29:24 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:29:24 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"image_pull","response":{"type":"status","status":"failed","body":"DockerError(400, 'invalid reference format')"}}}]
30/07/2021 08:29:24 [INFO] apps.store.aexit(): exit 1:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801 2:(None, None, None) 3:{}
30/07/2021 08:29:24 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image"}}]
30/07/2021 08:29:24 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:29:24 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801'}, 'task': {'uuid': 'ee8d9cd7-bc66-4f7a-af6e-bacff49ce801', 'command': 'cleanup_image'}}
30/07/2021 08:29:24 [INFO] apps.socket_handlers.images.cleanup_image(): cleaning up task:ee8d9cd7-bc66-4f7a-af6e-bacff49ce801
30/07/2021 08:29:24 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:29:24 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+ee8d9cd7-bc66-4f7a-af6e-bacff49ce801"},"task":{"uuid":"ee8d9cd7-bc66-4f7a-af6e-bacff49ce801","command":"cleanup_image","response":{"type":"status","status":"done","body":{}}}}]
30/07/2021 08:29:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:29:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:29:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:29:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:29:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:29:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:29:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:29:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:30:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:30:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:30:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:30:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:30:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:30:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:30:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:30:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:31:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:31:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:31:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:31:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:31:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:31:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:31:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:31:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:31:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:31:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:32:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:32:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:32:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:32:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:32:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:32:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:32:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:32:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:33:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:33:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:33:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:33:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:33:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:33:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:33:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:33:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:34:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:34:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:34:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:34:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:34:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:34:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:34:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:34:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:34:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:34:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:35:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:35:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:35:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:35:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:35:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:35:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:35:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:35:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:36:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:36:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:36:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:36:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:36:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:36:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:36:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:36:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:36:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:36:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:37:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:37:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:37:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:37:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:37:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:37:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:37:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:37:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:38:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:38:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:38:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:38:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:38:34 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","body":{"tag":"latest","uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","pin_version":true,"name":"ciscotestautomation/pyats","discover":true,"credentials":"bnVsbA==","push_url":null}}}]
30/07/2021 08:38:34 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:38:34 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9'}, 'task': {'uuid': '53040c72-ceb9-49ee-936b-6323b82bf7e9', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '53040c72-ceb9-49ee-936b-6323b82bf7e9', 'pin_version': True, 'name': 'ciscotestautomation/pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': None}}}
30/07/2021 08:38:34 [INFO] apps.socket_handlers.images.image_pull(): Pulling image: {'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9'}, 'task': {'uuid': '53040c72-ceb9-49ee-936b-6323b82bf7e9', 'command': 'image_pull', 'body': {'tag': 'latest', 'uuid': '53040c72-ceb9-49ee-936b-6323b82bf7e9', 'pin_version': True, 'name': 'ciscotestautomation/pyats', 'discover': True, 'credentials': 'bnVsbA==', 'push_url': None}}}
30/07/2021 08:38:34 [INFO] apps.store.aenter(): enter 53040c72-ceb9-49ee-936b-6323b82bf7e9
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling from ciscotestautomation/pyats","id":"latest"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"b4d181a07f80"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"de8ecf497b75"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"873d9328d7df"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"047599b3f08e"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"4dac204cea44"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"2bdeac995d46"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"3551abbc2d97"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pulling fs layer","progressDetail":{},"id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Waiting","progressDetail":{},"id":"2bdeac995d46"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Waiting","progressDetail":{},"id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Waiting","progressDetail":{},"id":"047599b3f08e"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Waiting","progressDetail":{},"id":"4dac204cea44"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Waiting","progressDetail":{},"id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Waiting","progressDetail":{},"id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:34 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:34 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Waiting","progressDetail":{},"id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":28035,"total":2769653},"progress":"[> ] 28.04kB/2.77MB","id":"de8ecf497b75"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":273658,"total":27145851},"progress":"[> ] 273.7kB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":97521,"total":9685806},"progress":"[> ] 97.52kB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":2769653,"total":2769653},"progress":"[==================================================>] 2.77MB/2.77MB","id":"de8ecf497b75"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"de8ecf497b75"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"de8ecf497b75"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":8927671,"total":27145851},"progress":"[================> ] 8.928MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":4270518,"total":9685806},"progress":"[======================> ] 4.271MB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":17275319,"total":27145851},"progress":"[===============================> ] 17.28MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":9370038,"total":9685806},"progress":"[================================================> ] 9.37MB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"873d9328d7df"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"873d9328d7df"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":234,"total":234},"progress":"[==================================================>] 234B/234B","id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"b4d181a07f80"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"b4d181a07f80"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":25194,"total":2492317},"progress":"[> ] 25.19kB/2.492MB","id":"047599b3f08e"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":2492317,"total":2492317},"progress":"[==================================================>] 2.492MB/2.492MB","id":"047599b3f08e"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"047599b3f08e"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"047599b3f08e"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":212,"total":212},"progress":"[==================================================>] 212B/212B","id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":539898,"total":118280387},"progress":"[> ] 539.9kB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":4764,"total":375186},"progress":"[> ] 4.764kB/375.2kB","id":"2bdeac995d46"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":375186,"total":375186},"progress":"[==================================================>] 375.2kB/375.2kB","id":"2bdeac995d46"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":3241002,"total":118280387},"progress":"[=> ] 3.241MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"2bdeac995d46"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"2bdeac995d46"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":294912,"total":27145851},"progress":"[> ] 294.9kB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":25310,"total":2462484},"progress":"[> ] 25.31kB/2.462MB","id":"3551abbc2d97"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":5944362,"total":118280387},"progress":"[==> ] 5.944MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":2949120,"total":27145851},"progress":"[=====> ] 2.949MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"3551abbc2d97"}}}}]
30/07/2021 08:38:35 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:35 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"3551abbc2d97"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":8107050,"total":118280387},"progress":"[===> ] 8.107MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":490,"total":490},"progress":"[==================================================>] 490B/490B","id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":5308416,"total":27145851},"progress":"[=========> ] 5.308MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":16692266,"total":118280387},"progress":"[=======> ] 16.69MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":8552448,"total":27145851},"progress":"[===============> ] 8.552MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":19362858,"total":118280387},"progress":"[========> ] 19.36MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":490,"total":490},"progress":"[==================================================>] 490B/490B","id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":12976128,"total":27145851},"progress":"[=======================> ] 12.98MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":22033450,"total":118280387},"progress":"[=========> ] 22.03MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":16809984,"total":27145851},"progress":"[==============================> ] 16.81MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":24728618,"total":118280387},"progress":"[==========> ] 24.73MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":20348928,"total":27145851},"progress":"[=====================================> ] 20.35MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":27403306,"total":118280387},"progress":"[===========> ] 27.4MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":24772608,"total":27145851},"progress":"[=============================================> ] 24.77MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":30077994,"total":118280387},"progress":"[============> ] 30.08MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":26247168,"total":27145851},"progress":"[================================================> ] 26.25MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:36 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:36 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":32781354,"total":118280387},"progress":"[=============> ] 32.78MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":27145851,"total":27145851},"progress":"[==================================================>] 27.15MB/27.15MB","id":"b4d181a07f80"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":35480618,"total":118280387},"progress":"[==============> ] 35.48MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":38138922,"total":118280387},"progress":"[================> ] 38.14MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":40821802,"total":118280387},"progress":"[=================> ] 40.82MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":43484202,"total":118280387},"progress":"[==================> ] 43.48MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"b4d181a07f80"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":32768,"total":2769653},"progress":"[> ] 32.77kB/2.77MB","id":"de8ecf497b75"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":46162986,"total":118280387},"progress":"[===================> ] 46.16MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":49378346,"total":118280387},"progress":"[====================> ] 49.38MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":327680,"total":2769653},"progress":"[=====> ] 327.7kB/2.77MB","id":"de8ecf497b75"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":2769653,"total":2769653},"progress":"[==================================================>] 2.77MB/2.77MB","id":"de8ecf497b75"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":52081706,"total":118280387},"progress":"[======================> ] 52.08MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"de8ecf497b75"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":98304,"total":9685806},"progress":"[> ] 98.3kB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":54785066,"total":118280387},"progress":"[=======================> ] 54.79MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":1376256,"total":9685806},"progress":"[=======> ] 1.376MB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:37 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:37 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":57455658,"total":118280387},"progress":"[========================> ] 57.46MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":5898240,"total":9685806},"progress":"[==============================> ] 5.898MB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":60142634,"total":118280387},"progress":"[=========================> ] 60.14MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":8552448,"total":9685806},"progress":"[============================================> ] 8.552MB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":62829610,"total":118280387},"progress":"[==========================> ] 62.83MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":65512490,"total":118280387},"progress":"[===========================> ] 65.51MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":9240576,"total":9685806},"progress":"[===============================================> ] 9.241MB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":9685806,"total":9685806},"progress":"[==================================================>] 9.686MB/9.686MB","id":"873d9328d7df"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":67662890,"total":118280387},"progress":"[============================> ] 67.66MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":70890538,"total":118280387},"progress":"[=============================> ] 70.89MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":73569322,"total":118280387},"progress":"[===============================> ] 73.57MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":76248106,"total":118280387},"progress":"[================================> ] 76.25MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":78951466,"total":118280387},"progress":"[=================================> ] 78.95MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"873d9328d7df"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":234,"total":234},"progress":"[==================================================>] 234B/234B","id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":234,"total":234},"progress":"[==================================================>] 234B/234B","id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:38 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:38 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":81638442,"total":118280387},"progress":"[==================================> ] 81.64MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"446d9c58fdc9"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":32768,"total":2492317},"progress":"[> ] 32.77kB/2.492MB","id":"047599b3f08e"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":84309034,"total":118280387},"progress":"[===================================> ] 84.31MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":589824,"total":2492317},"progress":"[===========> ] 589.8kB/2.492MB","id":"047599b3f08e"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":87012394,"total":118280387},"progress":"[====================================> ] 87.01MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":2492317,"total":2492317},"progress":"[==================================================>] 2.492MB/2.492MB","id":"047599b3f08e"}}}}]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:38:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":89699370,"total":118280387},"progress":"[=====================================> ] 89.7MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"047599b3f08e"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":92394538,"total":118280387},"progress":"[=======================================> ] 92.39MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":95052842,"total":118280387},"progress":"[========================================> ] 95.05MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":97743914,"total":118280387},"progress":"[=========================================> ] 97.74MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":100414506,"total":118280387},"progress":"[==========================================> ] 100.4MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":103101482,"total":118280387},"progress":"[===========================================> ] 103.1MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:39 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:39 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":105792554,"total":118280387},"progress":"[============================================> ] 105.8MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":108450858,"total":118280387},"progress":"[=============================================> ] 108.5MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":111113258,"total":118280387},"progress":"[==============================================> ] 111.1MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":113792042,"total":118280387},"progress":"[================================================> ] 113.8MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Downloading","progressDetail":{"current":116470826,"total":118280387},"progress":"[=================================================> ] 116.5MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Verifying Checksum","progressDetail":{},"id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Download complete","progressDetail":{},"id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":557056,"total":118280387},"progress":"[> ] 557.1kB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":4456448,"total":118280387},"progress":"[=> ] 4.456MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":8912896,"total":118280387},"progress":"[===> ] 8.913MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":11698176,"total":118280387},"progress":"[====> ] 11.7MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:40 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:40 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":16711680,"total":118280387},"progress":"[=======> ] 16.71MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:41 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:41 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":21725184,"total":118280387},"progress":"[=========> ] 21.73MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:41 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:41 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":24510464,"total":118280387},"progress":"[==========> ] 24.51MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:41 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:41 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":25624576,"total":118280387},"progress":"[==========> ] 25.62MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:41 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:41 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":26738688,"total":118280387},"progress":"[===========> ] 26.74MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:41 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:41 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":27852800,"total":118280387},"progress":"[===========> ] 27.85MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:41 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:41 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":28409856,"total":118280387},"progress":"[============> ] 28.41MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:42 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:42 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":28966912,"total":118280387},"progress":"[============> ] 28.97MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:42 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:42 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":30081024,"total":118280387},"progress":"[============> ] 30.08MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:42 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:42 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":31195136,"total":118280387},"progress":"[=============> ] 31.2MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:42 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:42 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":32309248,"total":118280387},"progress":"[=============> ] 32.31MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:42 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:42 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":32866304,"total":118280387},"progress":"[=============> ] 32.87MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":33423360,"total":118280387},"progress":"[==============> ] 33.42MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":33980416,"total":118280387},"progress":"[==============> ] 33.98MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":34537472,"total":118280387},"progress":"[==============> ] 34.54MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":35094528,"total":118280387},"progress":"[==============> ] 35.09MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":36208640,"total":118280387},"progress":"[===============> ] 36.21MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:43 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:43 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":36765696,"total":118280387},"progress":"[===============> ] 36.77MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:44 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:44 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":38436864,"total":118280387},"progress":"[================> ] 38.44MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:44 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:44 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":40108032,"total":118280387},"progress":"[================> ] 40.11MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:44 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:44 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":42893312,"total":118280387},"progress":"[==================> ] 42.89MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:44 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:44 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":45678592,"total":118280387},"progress":"[===================> ] 45.68MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:44 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:44 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":46792704,"total":118280387},"progress":"[===================> ] 46.79MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:44 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:44 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":47906816,"total":118280387},"progress":"[====================> ] 47.91MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:44 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:44 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":49577984,"total":118280387},"progress":"[====================> ] 49.58MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":53477376,"total":118280387},"progress":"[======================> ] 53.48MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":55148544,"total":118280387},"progress":"[=======================> ] 55.15MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":58490880,"total":118280387},"progress":"[========================> ] 58.49MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":61276160,"total":118280387},"progress":"[=========================> ] 61.28MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":64061440,"total":118280387},"progress":"[===========================> ] 64.06MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":68517888,"total":118280387},"progress":"[============================> ] 68.52MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":69632000,"total":118280387},"progress":"[=============================> ] 69.63MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:45 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:45 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":72417280,"total":118280387},"progress":"[==============================> ] 72.42MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":74645504,"total":118280387},"progress":"[===============================> ] 74.65MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":78544896,"total":118280387},"progress":"[=================================> ] 78.54MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":83001344,"total":118280387},"progress":"[===================================> ] 83MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":89686016,"total":118280387},"progress":"[=====================================> ] 89.69MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":95256576,"total":118280387},"progress":"[========================================> ] 95.26MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":100270080,"total":118280387},"progress":"[==========================================> ] 100.3MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":104726528,"total":118280387},"progress":"[============================================> ] 104.7MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":108625920,"total":118280387},"progress":"[=============================================> ] 108.6MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:46 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:46 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":113639424,"total":118280387},"progress":"[================================================> ] 113.6MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:47 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:47 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":115867648,"total":118280387},"progress":"[================================================> ] 115.9MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:47 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:47 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":118280387,"total":118280387},"progress":"[==================================================>] 118.3MB/118.3MB","id":"4dac204cea44"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"4dac204cea44"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":212,"total":212},"progress":"[==================================================>] 212B/212B","id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":212,"total":212},"progress":"[==================================================>] 212B/212B","id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"bd8a57cf798d"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":32768,"total":375186},"progress":"[====> ] 32.77kB/375.2kB","id":"2bdeac995d46"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":375186,"total":375186},"progress":"[==================================================>] 375.2kB/375.2kB","id":"2bdeac995d46"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":375186,"total":375186},"progress":"[==================================================>] 375.2kB/375.2kB","id":"2bdeac995d46"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"2bdeac995d46"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":32768,"total":2462484},"progress":"[> ] 32.77kB/2.462MB","id":"3551abbc2d97"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":851968,"total":2462484},"progress":"[=================> ] 852kB/2.462MB","id":"3551abbc2d97"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":2462484,"total":2462484},"progress":"[==================================================>] 2.462MB/2.462MB","id":"3551abbc2d97"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"3551abbc2d97"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":490,"total":490},"progress":"[==================================================>] 490B/490B","id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":490,"total":490},"progress":"[==================================================>] 490B/490B","id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"1bb9ff2e72ed"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":490,"total":490},"progress":"[==================================================>] 490B/490B","id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Extracting","progressDetail":{"current":490,"total":490},"progress":"[==================================================>] 490B/490B","id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Pull complete","progressDetail":{},"id":"2a98eed6e26a"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Digest: sha256:dbb5936db4bbfb45493b82942c6143dea1e113820a24a4f8abec4c112f1e51c3"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"log","body":{"status":"Status: Downloaded newer image for ciscotestautomation/pyats:latest"}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_pull","response":{"type":"status","status":"registering","body":{"Id":"sha256:48c5766b958d1ee5a4a710d01c8e7f44505ef1573000d9a3fe42f157346657c6","RepoTags":["ciscotestautomation/pyats:latest"],"RepoDigests":["ciscotestautomation/pyats@sha256:dbb5936db4bbfb45493b82942c6143dea1e113820a24a4f8abec4c112f1e51c3"],"Parent":"","Comment":"","Created":"2021-07-29T14:43:49.777436171Z","Container":"","ContainerConfig":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":null,"Cmd":null,"Image":"","Volumes":null,"WorkingDir":"","Entrypoint":null,"OnBuild":null,"Labels":null},"DockerVersion":"","Author":"","Config":{"Hostname":"","Domainname":"","User":"","AttachStdin":false,"AttachStdout":false,"AttachStderr":false,"Tty":false,"OpenStdin":false,"StdinOnce":false,"Env":["PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","LANG=C.UTF-8","GPG_KEY=0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D","PYTHON_VERSION=3.6.14","PYTHON_PIP_VERSION=21.1.3","PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py","PYTHON_GET_PIP_SHA256=6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7","WORKSPACE=/pyats"],"Cmd":["python"],"Image":"","Volumes":null,"WorkingDir":"/pyats","Entrypoint":["/bin/tini","--","/entrypoint.sh"],"OnBuild":null,"Labels":{"maintainer":"pyATS Support [email protected]"}},"Architecture":"amd64","Os":"linux","Size":554898246,"VirtualSize":554898246,"GraphDriver":{"Data":{"LowerDir":"/var/lib/docker/overlay2/cf5877434190aa4e75a5e94368770517544c14d302cc1a087aeac7de2a6d0e51/diff:/var/lib/docker/overlay2/49b428c40a3326ea2631a11f1d1c3e050ede87b0380a99984a8e4c1beda9f5a9/diff:/var/lib/docker/overlay2/457a57bc49902fc2db920e83bcbe02a77db2d73bcf2df5a698140bd3a08e7770/diff:/var/lib/docker/overlay2/41633763dfffae13ca344150ab338fc55b6319ca15f6fc850beb61f094d62625/diff:/var/lib/docker/overlay2/a298af82d632ebc75984a3b8397bb9325ab96a124fab1238bdf33b95249ec953/diff:/var/lib/docker/overlay2/1f9cadd7a0a693b40d45e95ec1d084fbd5e2d79a2979e21f973ad9d0e7a376bb/diff:/var/lib/docker/overlay2/eb4429af5a05a053002f2ee61842b3117848dd1c15a308d295c5de4c9b671300/diff:/var/lib/docker/overlay2/62ef5eddcd8f327bcacd3fa697fab4461683b549abbbd2fb4a2ab9e8aadeec4a/diff:/var/lib/docker/overlay2/1e4130fd69aabcf3c131b4a9986dd139134d5573a3571d9dd6fa053d37f70db4/diff:/var/lib/docker/overlay2/ba08bfcecff3df14e5a31afb0c5b158bb63706fb210ff098cb0ab9ed40f2d15f/diff","MergedDir":"/var/lib/docker/overlay2/822e53df0c86e8a7b988187db9c42ca37f97885ac56cd03480fbbbb85245b20f/merged","UpperDir":"/var/lib/docker/overlay2/822e53df0c86e8a7b988187db9c42ca37f97885ac56cd03480fbbbb85245b20f/diff","WorkDir":"/var/lib/docker/overlay2/822e53df0c86e8a7b988187db9c42ca37f97885ac56cd03480fbbbb85245b20f/work"},"Name":"overlay2"},"RootFS":{"Type":"layers","Layers":["sha256:764055ebc9a7a290b64d17cf9ea550f1099c202d83795aa967428ebdf335c9f7","sha256:537313a13d9080fc30444461b8aac5f03b9cbb0e2352b3c3098d5eca5f42688f","sha256:ed0eb1716da6150e8be63ddfd8b35a3be80c4bd11122d94b41a45ddcad04244b","sha256:11655fc03e45deb48d84c8be1c2b86166a141597227bc8e9f7f0bde0719ab398","sha256:d2b1546458b3461526a93f119de7d12d8309f177b6bc4572e93588a514fd495f","sha256:ac0d22c2a2932e52ee40c8c145bad48d4bd292de3d2f9ca9f93d4fbdf862aed3","sha256:4b859d3263d5439eee68c1ed349d23e4ce63db6dccc1d78b0079d0129dcec136","sha256:b97bfaaa7e5e2e031160a5f55f747b277f266a0c3b7c89b8c635fb274e0c1753","sha256:b56a89dfb88ae1642f9c0c0d4cdd322de5019b3ad63f8b519f70f9a58487f79e","sha256:8932c21dcee62874d02899d2222578f9daa559808f0ff3fd7b19db2ed7b94da1","sha256:72d19c5875866ec174a5dd4451350c2029de1691504cff0f328c3ad9d95aec26"]},"Metadata":{"LastTagTime":"0001-01-01T00:00:00Z"}}}}}]
30/07/2021 08:38:48 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:48 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_build","response":{"type":"status","status":"registering","body":"Discoverying jobs for image ciscotestautomation/pyats:latest"}}}]
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.fix_config(): Fname: /s3/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.py
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.fix_config(): Cmd: import json; import os; f = open("%s/installation/jobfiles.txt" % os.getenv("WORKSPACE")); content = json.dumps(json.loads(f.read())); print(content); f.close(); f = open("/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json", "w"); f.write(content); f.close();
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.fix_config(): Internal-output: /job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.discover_jobs(): Name: job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.discover_jobs(): Config: {'Cmd': ['python', '/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.py'], 'Image': 'ciscotestautomation/pyats:latest', 'AttachStdin': True, 'AttachStdout': True, 'AttachStderr': True, 'Tty': False, 'StdinOnce': True, 'OpenStdin': True, 'HostConfig': {'Binds': ['/home/azureuser/xpresso-pyats/workspace/xpresso/data/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9:/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9']}, 'Labels': {'com.pyats.worker': 'pyats-worker-1'}}
30/07/2021 08:38:48 [INFO] apps.socket_handlers.genies.discover_jobs(): Output_file: /s3/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json
30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): [Entrypoint] Starting pyATS Docker Image ...

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): [Entrypoint] Workspace Directory: /pyats

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): [Entrypoint] Activating workspace

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): Traceback (most recent call last):

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): File "/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.py", line 1, in

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): import json; import os; f = open("%s/installation/jobfiles.txt" % os.getenv("WORKSPACE")); content = json.dumps(json.loads(f.read())); print(content); f.close(); f = open("/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json", "w"); f.write(content); f.close();

30/07/2021 08:38:50 [INFO] apps.socket_handlers.genies.discover_jobs(): FileNotFoundError: [Errno 2] No such file or directory: '/pyats/installation/jobfiles.txt'

30/07/2021 08:38:51 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:51 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"image_build","response":{"type":"status","status":"failed","body":"[Errno 2] No such file or directory: '/s3/workers/53040c72-ceb9-49ee-936b-6323b82bf7e9/job_discovery_53040c72-ceb9-49ee-936b-6323b82bf7e9.json'"}}}]
30/07/2021 08:38:51 [INFO] apps.store.aexit(): exit 1:53040c72-ceb9-49ee-936b-6323b82bf7e9 2:(None, None, None) 3:{}
30/07/2021 08:38:51 [INFO] engineio.client._receive_packet(): Received packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"cleanup_image"}}]
30/07/2021 08:38:51 [INFO] socketio.client._handle_event(): Received event "message" [/]
30/07/2021 08:38:51 [INFO] apps.socket_handlers.commands.handle_event(): handle_event: event=message data={'route': {'id': '0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9'}, 'task': {'uuid': '53040c72-ceb9-49ee-936b-6323b82bf7e9', 'command': 'cleanup_image'}}
30/07/2021 08:38:51 [INFO] apps.socket_handlers.images.cleanup_image(): cleaning up task:53040c72-ceb9-49ee-936b-6323b82bf7e9
30/07/2021 08:38:51 [INFO] socketio.client.emit(): Emitting event "message" [/]
30/07/2021 08:38:51 [INFO] engineio.client._send_packet(): Sending packet MESSAGE data 2["message",{"route":{"id":"0f7f9f7e-307e-4dc8-8e64-50081646126d+xpresso_controller+53040c72-ceb9-49ee-936b-6323b82bf7e9"},"task":{"uuid":"53040c72-ceb9-49ee-936b-6323b82bf7e9","command":"cleanup_image","response":{"type":"status","status":"done","body":{}}}}]
30/07/2021 08:38:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:38:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:39:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:39:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:39:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:39:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:39:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:39:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:39:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:39:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:39:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:39:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:40:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:40:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:40:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:40:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:40:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:40:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:40:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:40:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:41:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:41:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:41:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:41:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:41:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:41:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:41:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:41:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:41:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:41:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:42:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:42:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:42:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:42:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:42:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:42:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:42:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:42:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:43:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:43:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:43:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:43:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:43:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:43:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:43:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:43:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:44:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:44:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:44:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:44:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:44:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:44:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:44:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:44:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:44:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:44:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:45:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:45:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:45:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:45:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:45:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:45:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:45:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:45:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:46:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:46:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:46:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:46:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:46:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:46:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:46:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:46:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:46:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:46:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:47:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:47:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:47:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:47:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:47:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:47:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:47:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:47:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:48:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:48:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:48:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:48:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:48:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:48:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:48:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:48:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:49:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:49:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:49:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:49:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:49:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:49:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:49:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:49:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:49:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:49:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:50:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:50:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:50:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:50:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:50:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:50:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:50:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:50:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:51:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:51:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:51:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:51:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:51:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:51:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:51:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:51:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:51:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:51:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:52:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:52:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:52:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:52:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:52:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:52:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:52:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:52:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:53:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:53:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:53:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:53:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:53:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:53:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:53:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:53:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:54:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:54:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:54:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:54:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:54:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:54:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:54:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:54:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:54:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:54:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:55:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:55:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:55:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:55:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:55:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:55:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:55:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:55:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:56:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:56:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:56:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:56:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:56:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:56:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:56:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:56:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:56:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:56:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:57:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:57:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:57:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:57:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:57:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:57:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:57:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:57:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:58:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:58:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:58:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:58:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:58:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:58:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:58:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:58:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:59:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:59:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:59:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 08:59:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:59:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:59:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:59:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 08:59:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 08:59:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 08:59:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:00:19 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:00:19 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:00:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:00:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:00:44 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:00:44 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:00:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:00:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:01:09 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:01:09 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:01:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:01:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:01:34 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:01:34 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:01:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:01:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:01:59 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:01:59 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:02:24 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:02:24 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:02:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:02:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:02:49 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:02:49 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:02:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:02:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:03:14 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:03:14 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:03:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:03:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:03:39 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:03:39 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:03:54 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:03:54 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:04:04 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:04:04 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:04:24 [INFO] apps.tasks.image_push_results(): starting image_push_results
30/07/2021 09:04:24 [INFO] apps.tasks.work_push_results(): starting work_push_results
30/07/2021 09:04:29 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:04:29 [INFO] engineio.client._receive_packet(): Received packet PONG data None
30/07/2021 09:04:54 [INFO] engineio.client._send_packet(): Sending packet PING data None
30/07/2021 09:04:54 [INFO] engineio.client._receive_packet(): Received packet PONG data None

+++++++++++++++++++++++++++++++++++++

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.