Skip to content

Commit 4981dbc

Browse files
uncaught
1 parent f238ec2 commit 4981dbc

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- build
3030
uses: canonical/data-platform-workflows/.github/workflows/[email protected]
3131
with:
32-
channel: 8.0/edge/test-refresh-v3-precheckfail
32+
channel: 8.0/edge/test-refresh-v3-uncaught
3333
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}
3434
create-git-tags: false
3535
secrets:

refresh_versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
charm_major = 1
44
workload = "8.0.42"
55

6-
charm = "8.0/1.2.0" # TODO remove
6+
charm = "8.0/1.3.0" # TODO remove

src/abstract_charm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class RouterRefresh(charm_refresh.CharmSpecificCommon, abc.ABC):
3030

3131
@staticmethod
3232
def run_pre_refresh_checks_after_1_unit_refreshed() -> None:
33-
raise charm_refresh.PrecheckFailed("Backup in progress")
33+
pass
3434

3535
@classmethod
3636
def is_compatible(

src/charm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ def __init__(self, *args) -> None:
121121
self._reconcile_allowed = False
122122
else:
123123
self._reconcile_allowed = True
124+
raise Exception
124125

125126
@property
126127
def _subordinate_relation_endpoint_names(self) -> typing.Optional[typing.Iterable[str]]:

0 commit comments

Comments
 (0)