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
Describe the bug
I want to use different database migrations with flyway for testing.
I defined two different locations for the flyway migrations in the application.properties:
Environment (please complete the following information):
Output of uname -a or ver:
Darwin Henriks-MBP-3.fritz.box 19.5.0 Darwin Kernel Version 19.5.0: Tue May 26 20:41:44 PDT 2020; root:xnu-6153.121.2~2/RELEASE_X86_64 x86_64
Output of java -version:
openjdk version "13.0.1" 2019-10-15
OpenJDK Runtime Environment (build 13.0.1+9)
OpenJDK 64-Bit Server VM (build 13.0.1+9, mixed mode, sharing)
GraalVM version (if different from Java): -
Quarkus version or git rev: 1.5.2
Build tool (ie. output of mvnw --version or gradlew --version):
Maven home: /usr/local/Cellar/maven/3.6.3_1/libexec
Java version: 13.0.2, vendor: N/A, runtime: /usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home
Default locale: en_DE, platform encoding: US-ASCII
OS name: "mac os x", version: "10.15.5", arch: "x86_64", family: "mac"
Additional context
This is working in version 1.4.2.Final of quarkus-flyway but not with the newer ones.
Describe the bug
I want to use different database migrations with flyway for testing.
I defined two different locations for the flyway migrations in the
application.properties
:%test.quarkus.flyway.locations=classpath:/db/migration/,classpath:/db/testing/
Expected behavior
I expect that all migrations in the folders
migration
andtesting
are appliedActual behavior
Only the migrations in the
migration
folder are applied, anything intesting
is ignored.To Reproduce
Steps to reproduce the behavior:
quarkus-flyway
version newer than 1.4.2quarkus.flyway.locations
)Configuration
Environment (please complete the following information):
uname -a
orver
:Darwin Henriks-MBP-3.fritz.box 19.5.0 Darwin Kernel Version 19.5.0: Tue May 26 20:41:44 PDT 2020; root:xnu-6153.121.2~2/RELEASE_X86_64 x86_64
java -version
:openjdk version "13.0.1" 2019-10-15
OpenJDK Runtime Environment (build 13.0.1+9)
OpenJDK 64-Bit Server VM (build 13.0.1+9, mixed mode, sharing)
mvnw --version
orgradlew --version
):Maven home: /usr/local/Cellar/maven/3.6.3_1/libexec
Java version: 13.0.2, vendor: N/A, runtime: /usr/local/Cellar/openjdk/13.0.2+8_2/libexec/openjdk.jdk/Contents/Home
Default locale: en_DE, platform encoding: US-ASCII
OS name: "mac os x", version: "10.15.5", arch: "x86_64", family: "mac"
Additional context
This is working in version
1.4.2.Final
ofquarkus-flyway
but not with the newer ones.quarkusio#10041
The text was updated successfully, but these errors were encountered: