From ae53e1385f595275adacfc411edd0645f7d01253 Mon Sep 17 00:00:00 2001 From: Arthur Flam Date: Thu, 10 Feb 2022 15:49:14 +0200 Subject: [PATCH] We're stable! v1.0.1 --- backend/pyproject.toml | 2 +- qaboard/__init__.py | 2 +- setup.py | 2 +- website/docs/celery-integration.md | 5 +++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 5fc8bbab..016e950d 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -4,7 +4,7 @@ [tool.poetry] name = "backend" # name = "qaboard" # used to be backend, poetry issues.. -version = "0.3.0" +version = "1.0.1" description = "Backend for QA-Board" authors = ["Arthur Flam "] license="Apache-2.0" diff --git a/qaboard/__init__.py b/qaboard/__init__.py index 548649d8..6e6fc1f8 100755 --- a/qaboard/__init__.py +++ b/qaboard/__init__.py @@ -1,5 +1,5 @@ # need to be update setup.py as well -__version__ = '0.8.13' +__version__ = '1.0.1' from .check_for_updates import check_for_updates check_for_updates() diff --git a/setup.py b/setup.py index 8087d384..da7649b8 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='qaboard', - version="0.8.13", # __version__ needs to be updated in qaboard/__init__.py as well + version="1.0.1", # __version__ needs to be updated in qaboard/__init__.py as well license="Apache-2.0", url="https://github.com/Samsung/qaboard", diff --git a/website/docs/celery-integration.md b/website/docs/celery-integration.md index 65dc9209..7418636f 100644 --- a/website/docs/celery-integration.md +++ b/website/docs/celery-integration.md @@ -55,6 +55,9 @@ qa batch --runner=local my-batch Note that unless you have a transparent shared storage for your working directory, you'll need to use `qa --share batch` to see runs in QA-Board... +## Monitoring +- A [`flower`](https://flower.readthedocs.io/en/latest/) instance is available at `/flower` +- Read the [docs](http://docs.celeryproject.org/en/latest/userguide/monitoring.html). ## Advanced Celery Configuration To configure Celery at the **project level**: @@ -98,5 +101,3 @@ Read [Celery's tutorial](http://docs.celeryproject.org/en/latest/getting-started ::: Celery's [worker user guide](https://docs.celeryproject.org/en/stable/userguide/workers.html) has lots of information on how to run [worker in the background](https://docs.celeryproject.org/en/stable/userguide/daemonizing.html#daemonizing), set [concurrency](https://docs.celeryproject.org/en/stable/userguide/workers.html#concurrency)... Check it out too as needed! - -If you need worker monitoring, read the [docs](http://docs.celeryproject.org/en/latest/userguide/monitoring.html). \ No newline at end of file