diff --git a/.github/workflows/pytest-auth.yml b/.github/workflows/pytest-auth.yml index 518e2a8350..fab87f0f2e 100644 --- a/.github/workflows/pytest-auth.yml +++ b/.github/workflows/pytest-auth.yml @@ -60,15 +60,15 @@ jobs: with: name: pytest-report path: output/test-auth-${{matrix.os}}-${{ matrix.python-version }}-results.xml - + # - name: Publish Unit Test Results # uses: EnricoMi/publish-unit-test-result-action@v1.5 # if: always() # with: # github_token: ${{ secrets.WORKFLOW_ACCESS_TOKEN }} # files: output/test-testutils*.xml - - + + #-cov=com --cov-report=xml --cov-report=html # pytest tests.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html # - name: Lint with flake8 diff --git a/README.md b/README.md index 5da7b8d078..f44c25242e 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,8 @@ connect to empd (port 4369) on ." Note: RabbitMQ startup error would s and not in RabbitMQ logs (/var/log/rabbitmq/rabbitmq@hostname.log) ##### 3. Bootstrap -Remove older version of rabbitmq_server directory. Defaults to /rabbitmq_server/rabbitmq_server-3.9.7 +Remove older version of rabbitmq_server directory if you are upgrading from a older version. +Defaults to /rabbitmq_server/rabbitmq_server-3.9.7 Run the rabbitmq boostrap command within an activated VOLTTRON environment diff --git a/docs/source/introduction/platform-install.rst b/docs/source/introduction/platform-install.rst index 3f806339b6..0e98705726 100644 --- a/docs/source/introduction/platform-install.rst +++ b/docs/source/introduction/platform-install.rst @@ -247,7 +247,8 @@ to connect to empd (port 4369) on ." Step 4 - Bootstrap the environment ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Remove older version of rabbitmq_server directory. Defaults to /rabbitmq_server/rabbitmq_server-3.9.7 +Remove older version of rabbitmq_server directory if you are upgrading from a older version. Defaults to +/rabbitmq_server/rabbitmq_server-3.9.7 Run the rabbitmq bootstrap step from within an VOLTTRON activated environment. .. code-block:: bash diff --git a/volttron/platform/main.py b/volttron/platform/main.py index 9df02431b1..ed3b62415b 100644 --- a/volttron/platform/main.py +++ b/volttron/platform/main.py @@ -135,7 +135,6 @@ log_level_info = ( #'volttron.platform.main', 'volttron.platform.vip.zmq_connection', - 'urllib3.connectionpool', 'watchdog.observers.inotify_buffer', 'volttron.platform.auth', 'volttron.platform.store', @@ -148,6 +147,8 @@ for log_name in log_level_info: logging.getLogger(log_name).setLevel(logging.INFO) +logging.getLogger('urllib3.connectionpool').setLevel(logging.WARNING) + VOLTTRON_INSTANCES = '~/.volttron_instances'