Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomirp committed Oct 3, 2023
1 parent 35676e8 commit dbfec23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def _juju_secret_set(self, scope: str, key: str, value: str) -> str:

secret = self.secrets[scope].get(SECRET_LABEL)

# It's not the first secret for the scope, we can re-use the existing one
# It's not the first secret for the scope, we can reuse the existing one
# that was fetched in the previous call
if secret:
secret_cache = self.secrets[scope][SECRET_CACHE_LABEL]
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/ha_tests/test_self_healing.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async def test_storage_re_use(ops_test, continuous_writes):
app = await app_name(ops_test)
if storage_type(ops_test, app) == "rootfs":
pytest.skip(
"re-use of storage can only be used on deployments with persistent storage not on rootfs deployments"
"reuse of storage can only be used on deployments with persistent storage not on rootfs deployments"
)

# removing the only replica can be disastrous
Expand Down

0 comments on commit dbfec23

Please sign in to comment.