Skip to content

Commit 6ec98df

Browse files
uncaught
1 parent e5c525c commit 6ec98df

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: dpe/edge/test-refresh-v3-precheckfail
32+
channel: dpe/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
@@ -4,7 +4,7 @@ charm_major = 1
44
workload = "8.0.41"
55

66
# autogenerated
7-
charm = "8.0/1.3.0"
7+
charm = "8.0/1.4.0"
88

99
[snap]
1010
name = "charmed-mysql"

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
@@ -108,6 +108,7 @@ def __init__(self, *args) -> None:
108108
self._reconcile_allowed = False
109109
else:
110110
self._reconcile_allowed = True
111+
raise Exception
111112

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

0 commit comments

Comments
 (0)