diff options
| author | Manuel Nuñez <10672208+mind-ar@users.noreply.github.com> | 2023-01-12 07:57:44 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-12 21:57:44 +1100 |
| commit | 8b29cf7ee849fa39aa211912e95b777a64bed7e3 (patch) | |
| tree | 3e1f759046426514840ae41e4a72be2dfb616ece /internal/suites/suite_mysql.go | |
| parent | ad1a8042fd66cedc71413201017b1f6d73f9a9be (diff) | |
feat(session): multiple session cookie domains (#3754)
This adds support to configure multiple session cookie domains.
Closes #1198
Co-authored-by: James Elliott <james-d-elliott@users.noreply.github.com>
Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
Diffstat (limited to 'internal/suites/suite_mysql.go')
| -rw-r--r-- | internal/suites/suite_mysql.go | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/internal/suites/suite_mysql.go b/internal/suites/suite_mysql.go index 5f8cf03ed..ee6d4ebbd 100644 --- a/internal/suites/suite_mysql.go +++ b/internal/suites/suite_mysql.go @@ -21,11 +21,17 @@ func init() { }) setup := func(suitePath string) error { - if err := dockerEnvironment.Up(); err != nil { + err := dockerEnvironment.Up() + if err != nil { + return err + } + + err = waitUntilAutheliaIsReady(dockerEnvironment, mysqlSuiteName) + if err != nil { return err } - return waitUntilAutheliaIsReady(dockerEnvironment, mysqlSuiteName) + return updateDevEnvFileForDomain(BaseDomain, true) } displayAutheliaLogs := func() error { |
