remove progressbar for logging

This commit is contained in:
Thies Lennart Alff 2025-01-03 13:13:52 +01:00
parent 11317e2033
commit 3c324439c3
Signed by: lennartalff
GPG key ID: 4EC67D34D594104D

View file

@ -23,7 +23,7 @@ class BackupManager:
self._gotify = gotify.Gotify(self._common["GOTIFY_TOKEN"]) self._gotify = gotify.Gotify(self._common["GOTIFY_TOKEN"])
def export_data(self): def export_data(self):
cmd = "docker compose exec -it webserver document_exporter ../export -d -f" cmd = "docker compose exec -it webserver document_exporter ../export -d -f --no-progress-bar"
try: try:
result = subprocess.run( result = subprocess.run(
cmd, shell=True, text=True, check=True, capture_output=True cmd, shell=True, text=True, check=True, capture_output=True