[xena] Ensure get_requests_for_local_unit doesn't fail on incomplete relation

This is a rebuild/make sync for charms to pickup the fix in charmhelpers to fix
any inadvertant accesses of ['ca'] in the relation data before it is available
from vault in the certificates relation.  Fix in charmhelpers is in [1].

[1] https://github.com/juju/charm-helpers/pull/828
Closes-Bug: #2028683

Change-Id: If16f171bf9b3240346380463755de0690fc55547
This commit is contained in:
Alex Kavanagh 2023-08-17 13:55:52 +01:00
parent 2c266fe74f
commit 432a49301b
4 changed files with 9 additions and 3 deletions

View File

@ -2,4 +2,3 @@ libffi-dev [platform:dpkg]
libpq-dev [platform:dpkg]
libxml2-dev [platform:dpkg]
libxslt1-dev [platform:dpkg]

View File

@ -2,4 +2,4 @@
# when dependencies of the charm change,
# but nothing in the charm needs to.
# simply change the uuid to something new
0abbf0a6-39af-4d69-9bee-f8da15fb049e
4480b9ba-3ce0-11ee-ad16-a7e00638e691

View File

@ -241,6 +241,12 @@
"package": "pyaml",
"vcs": null,
"version": "21.10.1"
},
{
"type": "python_module",
"package": "Cython",
"vcs": null,
"version": "0.29.36"
}
]
}

View File

@ -97,7 +97,8 @@ commands = stestr run --slowest {posargs}
[testenv:pep8]
basepython = python3
deps = flake8==3.9.2
charm-tools==2.8.3
PyYAML==6.0.1
charm-tools==2.8.6
commands = flake8 {posargs} src unit_tests
[testenv:func-target]