File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
main/java/org/neo4j/driver/v1
test/java/org/neo4j/driver/internal Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ public static class ConfigBuilder
142
142
private long idleTimeBeforeConnectionTest = 200 ;
143
143
private EncryptionLevel encruptionLevel = EncryptionLevel .REQUIRED ;
144
144
private TrustStrategy trustStrategy = trustOnFirstUse (
145
- new File ( getProperty ( "user.home" ), ".neo4j/neo4j_known_hosts " ) );
145
+ new File ( getProperty ( "user.home" ), ".neo4j" + File . separator + "known_hosts " ) );
146
146
147
147
private ConfigBuilder () {}
148
148
Original file line number Diff line number Diff line change 31
31
32
32
public class ConfigTest
33
33
{
34
- private static final File DEFAULT_KNOWN_HOSTS = new File ( getProperty ( "user.home" ), ".neo4j/neo4j_known_hosts" );
34
+ private static final File DEFAULT_KNOWN_HOSTS = new File ( getProperty ( "user.home" ),
35
+ ".neo4j" + File .separator + "known_hosts" );
35
36
36
37
@ Test
37
38
public void shouldDefaultToKnownCerts ()
You can’t perform that action at this time.
0 commit comments