You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As explained also here, 1.7/edge channel uses revision 250. Taking a look at rev250 code, we see that the charm code has the _check_public_url method, but it seems like it is not called anywhere. Thus, the charm will never catch that the configuration is not there.
Solution
Implement following in ckf-1.7/track
diff --git a/src/charm.py b/src/charm.py
index 4378d31..375037f 100755
--- a/src/charm.py+++ b/src/charm.py@@ -42,6 +42,7 @@ class Operator(CharmBase):
image_details = self._check_image_details()
+ self._check_public_url()
except CheckFailed as error:
self.model.unit.status = error.status
return
The text was updated successfully, but these errors were encountered:
As explained also here,
1.7/edge
channel uses revision 250. Taking a look at rev250 code, we see that the charm code has the _check_public_url method, but it seems like it is not called anywhere. Thus, the charm will never catch that the configuration is not there.Solution
Implement following in
ckf-1.7/track
The text was updated successfully, but these errors were encountered: