While writing tests I found some problems with how AUTO_BASE_URL and SWIFT_BASE_URL interact.
If AUTO_BASE_URL is True we will end up completely ignoring the SWIFT_BASE_URL anyway, so I suggest dropping AUTO_BASE_URL and do the auto resolving if SWIFT_BASE_URL is not defined. Right now you have to manually disable AUTO_BASE_URL if you are overriding the base url.
Am I missing something important details here? If am right this would at least make configuration a lot more user friendly.
While writing tests I found some problems with how
AUTO_BASE_URL
andSWIFT_BASE_URL
interact.If
AUTO_BASE_URL
isTrue
we will end up completely ignoring theSWIFT_BASE_URL
anyway, so I suggest droppingAUTO_BASE_URL
and do the auto resolving ifSWIFT_BASE_URL
is not defined. Right now you have to manually disableAUTO_BASE_URL
if you are overriding the base url.Am I missing something important details here? If am right this would at least make configuration a lot more user friendly.