We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e7bc73 commit 1bf0e29Copy full SHA for 1bf0e29
google-cloud-datastore/src/test/java/com/google/cloud/datastore/DatastoreTest.java
@@ -96,9 +96,6 @@
96
public class DatastoreTest {
97
private static final int NUMBER_OF_ATTEMPTS = 5;
98
99
- @ClassRule
100
- public static MultipleAttemptsRule rr = new MultipleAttemptsRule(NUMBER_OF_ATTEMPTS, 10);
101
-
102
private static LocalDatastoreHelper helper = LocalDatastoreHelper.create(1.0);
103
private static final DatastoreOptions options = helper.getOptions();
104
private static final Datastore datastore = options.getService();
@@ -176,6 +173,7 @@ public class DatastoreTest {
176
173
177
174
@BeforeClass
178
175
public static void beforeClass() throws IOException, InterruptedException {
+ System.setProperty("java.net.preferIPv6Addresses", "true");
179
helper.start();
180
}
181
0 commit comments