Open hatakashi opened 3 years ago
Missing comma in oracle_db breaks initparams when using the domain option.
if domain is not None: initparam += 'db_domain=%s' % domain
should be
if domain is not None: initparam += 'db_domain=%s,' % domain
Missing comma in oracle_db breaks initparams when using the domain option.
if domain is not None: initparam += 'db_domain=%s' % domain
should be
if domain is not None: initparam += 'db_domain=%s,' % domain