Verified Commit fd7add47 authored by Raphael Mäder's avatar Raphael Mäder
Browse files

Use correct DB password for `switch`

parent 01f77d30
Loading
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -49,6 +49,9 @@ switch_live:
    - sbt
  script:
    - ci switch live
  variables:
    ANSIBLE_OPTION_MYSQL_PASSWORD: ${MYSQL_PASSWORD}
    ANSIBLE_OPTION_MYSQL_ROOT_PASSWORD: ${MYSQL_PASSWORD}
  when: manual
  only:
    - master
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ public class CarDatatableService extends AbstractDatatableService<Car> {
    private final PlayAuthApi playAuthApi;

    @Inject
    public CarDatatableService(JPAApi jpaApi, PlayAuthApi playAuthApi, PlayAuth playAuth) {
    public CarDatatableService(JPAApi jpaApi, PlayAuthApi playAuthApi) {
        super(jpaApi);
        this.jpaApi = jpaApi;
        this.playAuthApi = playAuthApi;