Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ peers:
replicas:
interface: git_ubuntu_primary_info

links:
documentation: https://discourse.charmhub.io/t/git-ubuntu-operator-documentation/19098

config:
options:
controller_port:
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def test_service_status(app: str, juju: jubilant.Juju):
app: The app in charge of this unit.
juju: The juju model in charge of the app.
"""
# Wait until machine is ready, then wait an extra 30 seconds for services to fully activate.
# Wait until machine is ready, then wait an extra 60 seconds for services to fully activate.
juju.wait(jubilant.all_active)
sleep(30)
sleep(60)

def get_services_dict(unit_name: str, juju: jubilant.Juju) -> dict[str, dict[str, bool | str]]:
"""Get a dictionary of running systemd services on the app's unit.
Expand Down
Loading