You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: restart container after DB dump load in Playwright CI job A
Job A loads a fresh 420_SDK database dump while the container is running.
Without a restart, the app holds stale DB state and crashes with migration
errors. Jobs B/C already restart after their DB changes.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
docker exec -i mariadbtest mysql -u root --password=secretpassword -e 'update 420_SDK.Settings set Value = "my-rabbit" where Name = "rabbitMqHost"'
256
+
docker restart my-container
257
+
sleep 15
255
258
- name: Change rabbitmq hostname
256
259
if: ${{ matrix.test != 'a' }}
257
260
run: docker exec -i mariadbtest mysql -u root --password=secretpassword -e 'update 420_SDK.Settings set Value = "my-rabbit" where Name = "rabbitMqHost"'
docker exec -i mariadbtest mysql -u root --password=secretpassword -e 'update 420_SDK.Settings set Value = "my-rabbit" where Name = "rabbitMqHost"'
247
+
docker restart my-container
248
+
sleep 15
246
249
- name: Change rabbitmq hostname
247
250
if: ${{ matrix.test != 'a' }}
248
251
run: docker exec -i mariadbtest mysql -u root --password=secretpassword -e 'update 420_SDK.Settings set Value = "my-rabbit" where Name = "rabbitMqHost"'
0 commit comments