Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MEB-105 Updated to Brainzbot 1.7.0/Flask 1.0 #312

Closed
wants to merge 3 commits into from

Conversation

bcye
Copy link

@bcye bcye commented Oct 29, 2018

As instructed in MEB-105, I upgraded the codebase to Flask 1.0.7, by upgrading Brainzutils to version 1.7. Running the tests goes fine and gives me the following output:

Step 1/2 : FROM postgres:9.5.4
 ---> 2417ea518abc
Step 2/2 : ADD create_extensions.sql /docker-entrypoint-initdb.d/
 ---> Using cache
 ---> 30a01c30998a
Successfully built 30a01c30998a
Successfully tagged docker_db_test:latest
Step 1/10 : FROM metabrainz/python:3.6-1
 ---> 4e283cc9049f
Step 2/10 : RUN apt-get update      && apt-get install -y --no-install-recommends                         build-essential                         git                         libpq-dev                         libtiff5-dev                         libffi-dev                         libxml2-dev                         libxslt1-dev                         libssl-dev                         wget      && rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 25595045e6a0
Step 3/10 : ENV DOCKERIZE_VERSION v0.2.0
 ---> Using cache
 ---> 627ca131720b
Step 4/10 : RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz     && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
 ---> Using cache
 ---> 412c916acefd
Step 5/10 : RUN mkdir /code
 ---> Using cache
 ---> a3da71a993f4
Step 6/10 : WORKDIR /code
 ---> Using cache
 ---> 101b6f561c0c
Step 7/10 : COPY requirements.txt /code/
 ---> Using cache
 ---> 13e96d2faa15
Step 8/10 : RUN pip install -r requirements.txt
 ---> Using cache
 ---> 1b28122326b5
Step 9/10 : COPY . /code/
 ---> ba1dac15e2fb
Step 10/10 : CMD dockerize -wait tcp://db_test:5432 -timeout 60s     py.test --junitxml=/data/test_report.xml             --cov-report xml:/data/coverage.xml             --cov-report html:/data/coverage-html
 ---> Running in 7c6171fe52d7
Removing intermediate container 7c6171fe52d7
 ---> ad24130c2c71
Successfully built ad24130c2c71
Successfully tagged docker_web_test:latest
Attaching to docker_db_test_1, docker_redis_1, docker_web_test_1
�[36mdb_test_1   |�[0m LOG:  database system was interrupted; last known up at 2018-10-29 03:15:40 UTC
�[33mredis_1     |�[0m                 _._                                                  
�[33mredis_1     |�[0m            _.-``__ ''-._                                             
�[33mredis_1     |�[0m       _.-``    `.  `_.  ''-._           Redis 3.2.1 (00000000/0) 64 bit
�[33mredis_1     |�[0m   .-`` .-```.  ```\/    _.,_ ''-._                                   
�[33mredis_1     |�[0m  (    '      ,       .-`  | `,    )     Running in standalone mode
�[33mredis_1     |�[0m  |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
�[33mredis_1     |�[0m  |    `-._   `._    /     _.-'    |     PID: 1
�[33mredis_1     |�[0m   `-._    `-._  `-./  _.-'    _.-'                                   
�[33mredis_1     |�[0m  |`-._`-._    `-.__.-'    _.-'_.-'|                                  
�[33mredis_1     |�[0m  |    `-._`-._        _.-'_.-'    |           http://redis.io        
�[33mredis_1     |�[0m   `-._    `-._`-.__.-'_.-'    _.-'                                   
�[33mredis_1     |�[0m  |`-._`-._    `-.__.-'    _.-'_.-'|                                  
�[33mredis_1     |�[0m  |    `-._`-._        _.-'_.-'    |                                  
�[33mredis_1     |�[0m   `-._    `-._`-.__.-'_.-'    _.-'                                   
�[33mredis_1     |�[0m       `-._    `-.__.-'    _.-'                                       
�[33mredis_1     |�[0m           `-._        _.-'                                           
�[33mredis_1     |�[0m               `-.__.-'                                               
�[33mredis_1     |�[0m 
�[33mredis_1     |�[0m 1:M 29 Oct 03:16:05.854 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
�[33mredis_1     |�[0m 1:M 29 Oct 03:16:05.854 # Server started, Redis version 3.2.1
�[33mredis_1     |�[0m 1:M 29 Oct 03:16:05.854 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
�[33mredis_1     |�[0m 1:M 29 Oct 03:16:05.854 * The server is now ready to accept connections on port 6379
�[32mweb_test_1  |�[0m 2018/10/29 03:16:06 Waiting for host: tcp://db_test:5432
�[36mdb_test_1   |�[0m LOG:  database system was not properly shut down; automatic recovery in progress
�[32mweb_test_1  |�[0m 2018/10/29 03:16:06 Connected to tcp://db_test:5432
�[36mdb_test_1   |�[0m LOG:  redo starts at 0/2781160
�[36mdb_test_1   |�[0m LOG:  invalid record length at 0/2FF44C8
�[36mdb_test_1   |�[0m LOG:  redo done at 0/2FF44A0
�[36mdb_test_1   |�[0m LOG:  last completed transaction was at log time 2018-10-29 03:15:49.467909+00
�[36mdb_test_1   |�[0m LOG:  MultiXact member wraparound protections are now enabled
�[36mdb_test_1   |�[0m LOG:  database system is ready to accept connections
�[36mdb_test_1   |�[0m LOG:  autovacuum launcher started
�[32mweb_test_1  |�[0m ============================= test session starts ==============================
�[32mweb_test_1  |�[0m platform linux -- Python 3.6.3, pytest-3.2.1, py-1.7.0, pluggy-0.4.0
�[32mweb_test_1  |�[0m rootdir: /code, inifile: pytest.ini
�[32mweb_test_1  |�[0m plugins: cov-2.5.1
�[32mweb_test_1  |�[0m collected 56 items
�[32mweb_test_1  |�[0m 
�[32mweb_test_1  |�[0m metabrainz/utils_test.py ..
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/views_test.py .............
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/admin/views_test.py ...
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/api/views/index_test.py .
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/api/views/musicbrainz_test.py ......
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/model/payment_test.py ........
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/payments/views_test.py .....
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/payments/paypal/views_test.py ....
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/reports/financial_reports/views_test.py .
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is already a transaction in progress
�[36mdb_test_1   |�[0m WARNING:  there is no transaction in progress
�[32mweb_test_1  |�[0m metabrainz/users/views_test.py .............
�[32mweb_test_1  |�[0m 
�[32mweb_test_1  |�[0m ------------------ generated xml file: /data/test_report.xml -------------------
�[32mweb_test_1  |�[0m 
�[32mweb_test_1  |�[0m ----------- coverage: platform linux, python 3.6.3-final-0 -----------
�[32mweb_test_1  |�[0m Coverage HTML written to dir /data/coverage-html
�[32mweb_test_1  |�[0m Coverage XML written to file /data/coverage.xml
�[32mweb_test_1  |�[0m 
�[32mweb_test_1  |�[0m ========================== 56 passed in 17.52 seconds ==========================
�[32mweb_test_1  |�[0m 2018/10/29 03:16:24 Command finished successfully.
�[36mdb_test_1   |�[0m LOG:  incomplete startup packet
�[32mdocker_web_test_1 exited with code 0
�[0m

@brainzbot
Copy link
Member

Can one of the admins verify this patch?

@paramsingh
Copy link
Collaborator

@brainzbot, add to whitelist

Copy link
Collaborator

@paramsingh paramsingh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💫

@mayhem
Copy link
Member

mayhem commented Jul 15, 2019

This was made obsolete by later PRs.

@mayhem mayhem closed this Jul 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants