Skip to content

Commit e81c345

Browse files
authored
Add explicit TLS flags to Testkit backend (#1089)
1 parent 3fad057 commit e81c345

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ dependency-reduced-pom.xml
2929
venv
3030
testkit-backend/bin/
3131
testkit/CAs/
32+
testkit/CustomCAs/

testkit-backend/src/main/java/neo4j/org/testkit/backend/messages/requests/GetFeatures.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ public class GetFeatures implements TestkitRequest
4949
"Feature:Auth:Kerberos",
5050
"Feature:Auth:Custom",
5151
"Feature:Impersonation",
52-
"Temporary:FastFailingDiscovery"
52+
"Temporary:FastFailingDiscovery",
53+
"Feature:TLS:1.1",
54+
"Feature:TLS:1.2",
55+
"Feature:API:SSLSchemes"
5356
) );
5457

5558
private static final Set<String> SYNC_FEATURES = new HashSet<>( Arrays.asList(

0 commit comments

Comments
 (0)