Add clearer error message for invalid SITE_URL (#7311) (#7312)

(cherry picked from commit 2fafb7f21c)

Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
github-actions[bot] 2024-05-23 23:43:54 +10:00 committed by GitHub
parent af3cf62b8e
commit 9cebfa85df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1022,8 +1022,12 @@ if SITE_URL:
logger.info('Using Site URL: %s', SITE_URL) logger.info('Using Site URL: %s', SITE_URL)
# Check that the site URL is valid # Check that the site URL is valid
validator = URLValidator() try:
validator(SITE_URL) validator = URLValidator()
validator(SITE_URL)
except Exception:
print(f"Invalid SITE_URL value: '{SITE_URL}'. InvenTree server cannot start.")
sys.exit(-1)
# Enable or disable multi-site framework # Enable or disable multi-site framework
SITE_MULTI = get_boolean_setting('INVENTREE_SITE_MULTI', 'site_multi', False) SITE_MULTI = get_boolean_setting('INVENTREE_SITE_MULTI', 'site_multi', False)