Moar tmp tweaks to try to debug the CI

This commit is contained in:
Alexandre Aubin 2022-01-29 17:18:24 +01:00
parent 3ca302b85d
commit 16946372cc

View file

@ -385,6 +385,8 @@ def domain_main_domain(operation_logger, new_main_domain=None):
domain_list_cache = {}
_set_hostname(new_main_domain)
except Exception as e:
import traceback
traceback.print_exc()
logger.warning(str(e), exc_info=1)
raise YunohostError("main_domain_change_failed")
@ -392,6 +394,8 @@ def domain_main_domain(operation_logger, new_main_domain=None):
try:
app_ssowatconf()
except Exception as e:
import traceback
traceback.print_exc()
logger.warning(str(e), exc_info=1)
raise YunohostError("main_domain_change_failed")