Skip to content

Commit ae53e13

Browse files
committed
We're stable! v1.0.1
1 parent 84d9962 commit ae53e13

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[tool.poetry]
55
name = "backend"
66
# name = "qaboard" # used to be backend, poetry issues..
7-
version = "0.3.0"
7+
version = "1.0.1"
88
description = "Backend for QA-Board"
99
authors = ["Arthur Flam <arthur.flam@samsung.com>"]
1010
license="Apache-2.0"

qaboard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# need to be update setup.py as well
2-
__version__ = '0.8.13'
2+
__version__ = '1.0.1'
33
from .check_for_updates import check_for_updates
44
check_for_updates()
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name='qaboard',
19-
version="0.8.13", # __version__ needs to be updated in qaboard/__init__.py as well
19+
version="1.0.1", # __version__ needs to be updated in qaboard/__init__.py as well
2020
license="Apache-2.0",
2121

2222
url="https://github.com/Samsung/qaboard",

website/docs/celery-integration.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ qa batch --runner=local my-batch
5555

5656
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...
5757

58+
## Monitoring
59+
- A [`flower`](https://flower.readthedocs.io/en/latest/) instance is available at `<QABOARD_HOST>/flower`
60+
- Read the [docs](http://docs.celeryproject.org/en/latest/userguide/monitoring.html).
5861
## Advanced Celery Configuration
5962
To configure Celery at the **project level**:
6063

@@ -98,5 +101,3 @@ Read [Celery's tutorial](http://docs.celeryproject.org/en/latest/getting-started
98101
:::
99102
100103
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!
101-
102-
If you need worker monitoring, read the [docs](http://docs.celeryproject.org/en/latest/userguide/monitoring.html).

0 commit comments

Comments
 (0)