Skip to content

Commit 00c6135

Browse files
authored
Fix getMixedModeVersion() to match display name (FoundationDB#3310)
This fixes failing mixedModeTest gradle task
1 parent 9571c02 commit 00c6135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/testing.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def getMixedModeVersion(descriptor) {
7575
break
7676
}
7777

78-
Matcher versionMatch = descriptor.displayName =~ /^MultiServer \((?:((?:\d+\.)+\d+) then Embedded|Embedded then ((?:\d+\.)+\d+))\)/
78+
Matcher versionMatch = descriptor.displayName =~ /^MultiServer \((?:((?:\d+\.)+\d+) then JDBC In-Process|JDBC In-Process then ((?:\d+\.)+\d+))\)/
7979
if (versionMatch.size() != 0) {
8080
def version = versionMatch[0][1]
8181
if (version == null) {

0 commit comments

Comments
 (0)