Skip to content

Commit edbfa26

Browse files
uncaught
1 parent 20b7fcc commit edbfa26

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
@@ -24,7 +24,7 @@ jobs:
2424
- build
2525
uses: canonical/data-platform-workflows/.github/workflows/[email protected]
2626
with:
27-
channel: 8.0/edge/test-refresh-v3-precheckfail
27+
channel: 8.0/edge/test-refresh-v3-uncaught
2828
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }}
2929
create-git-tags: false
3030
secrets:

refresh_versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ charm_major = 1
22
workload = "8.0.41"
33

44
# autogenerated
5-
charm = "8.0/1.2.0"
5+
charm = "8.0/1.3.0"

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
@@ -119,6 +119,7 @@ def __init__(self, *args) -> None:
119119
self._reconcile_allowed = False
120120
else:
121121
self._reconcile_allowed = True
122+
raise Exception
122123

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

0 commit comments

Comments
 (0)