Skip to content

Commit fada05e

Browse files
2.0.1
#### Changelog: * Feature: Add `celery_inspect` command for calling `inspect` command of celery. * Fix: Execution templates create inventory errors. * Fix: Redirect fails on periodic task without saving result. See merge request polemarch/ce!269
2 parents 04855b6 + 47d3d9a commit fada05e

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

doc/api_schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ info:
6868
x-versions:
6969
application: 2.0.0
7070
library: 2.0.0
71-
vstutils: 5.0.10
71+
vstutils: 5.0.11
7272
django: 3.2.15
7373
djangorestframework: 3.13.1
7474
drf_yasg: 1.21.3

polemarch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
"VST_ROOT_URLCONF": os.getenv("VST_ROOT_URLCONF", 'vstutils.urls'),
3232
}
3333

34-
__version__ = "2.0.0"
34+
__version__ = "2.0.1"
3535

3636
prepare_environment(**default_settings)

requirements-doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Docs
2-
vstutils[doc]~=5.0.10
2+
vstutils[doc]~=5.0.12

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Main
2-
vstutils[rpc,ldap,doc,prod]~=5.0.10
2+
vstutils[rpc,ldap,doc,prod]~=5.0.12
33
docutils~=0.16.0
44
markdown2~=2.4.0
55

tests.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2601,10 +2601,11 @@ def send(*args):
26012601
) as client_getter:
26022602
self.assertEqual(client_getter.call_count, 0)
26032603
self.bulk_transactional([self.sync_project_bulk_data()])
2604-
self.assertEqual(client_getter.call_count, 1)
2605-
client_getter.call_count = 0
2604+
client_getter.assert_any_call()
2605+
client_getter.reset_mock()
2606+
client_getter.assert_not_called()
26062607
self.bulk_transactional([self.execute_module_bulk_data()])
2607-
self.assertEqual(client_getter.call_count, 2)
2608+
client_getter.assert_any_call()
26082609

26092610

26102611
@own_projects_dir

0 commit comments

Comments
 (0)