Skip to content

Commit b392773

Browse files
author
Ajay Kannan
committed
---
yaml --- r: 4751 b: refs/heads/logging-alpha c: df86a44 h: refs/heads/master i: 4749: c276566 4747: 4390015 4743: 3d22c8a 4735: fc183ee
1 parent 1b11da1 commit b392773

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ refs/heads/compute-alpha: 969cba2627f1d53d352cc4a5ffe0879dacf65e6c
1212
refs/heads/dns-alpha: 2f90e7e338349287ace33375896907af0f032ca1
1313
refs/heads/dns-alpha-batch: 17442b07867021b85d0452f5f3eda29a3413288f
1414
refs/heads/gcs-nio: 283aeaf15efdcf3621eb6859f05e55ad7764375d
15-
refs/heads/logging-alpha: e1a17f0e069b5b3d48e36890fcb18a02d675f898
15+
refs/heads/logging-alpha: df86a444de86aefbd5b9cbb198976badc8438052
1616
refs/tags/v0.1.0: a615317f7424ed58621b1f65d5c4d8cbbe8a6ed8
1717
refs/tags/v0.1.1: 7a7f6985fe465e9dd6a075af55493f42b4933be0
1818
refs/tags/v0.1.2: 3eb3fe866ba22487686048f45d927b8c8638ea3f

branches/logging-alpha/gcloud-java-bigquery/src/test/java/com/google/gcloud/bigquery/it/ITBigQueryTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171

7272
import org.junit.AfterClass;
7373
import org.junit.BeforeClass;
74-
import org.junit.Ignore;
7574
import org.junit.Rule;
7675
import org.junit.Test;
7776
import org.junit.rules.Timeout;
@@ -624,7 +623,6 @@ public void testInsertAllWithErrors() {
624623
assertTrue(bigquery.delete(TableId.of(DATASET, tableName)));
625624
}
626625

627-
@Ignore("Flaky test; see issue #836")
628626
@Test
629627
public void testListAllTableData() {
630628
Page<List<FieldValue>> rows = bigquery.listTableData(TABLE_ID);
@@ -908,7 +906,6 @@ public void testCancelNonExistingJob() {
908906
assertFalse(bigquery.cancel("test_cancel_non_existing_job"));
909907
}
910908

911-
@Ignore("Flaky test; see #836")
912909
@Test
913910
public void testInsertFromFile() throws InterruptedException {
914911
String destinationTableName = "test_insert_from_file_table";

branches/logging-alpha/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/DatastoreOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ protected String defaultHost() {
130130
String host = System.getProperty(
131131
com.google.datastore.v1beta3.client.DatastoreHelper.LOCAL_HOST_ENV_VAR,
132132
System.getenv(com.google.datastore.v1beta3.client.DatastoreHelper.LOCAL_HOST_ENV_VAR));
133-
return host != null ? host : super.defaultHost();
133+
return host != null ? host : com.google.datastore.v1beta3.client.DatastoreFactory.DEFAULT_HOST;
134134
}
135135

136136
@Override

branches/logging-alpha/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/spi/DefaultDatastoreRpc.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ public DefaultDatastoreRpc(DatastoreOptions options) {
5454
if (fullURL.charAt(fullURL.length() - 1) != '/') {
5555
fullURL = fullURL + '/';
5656
}
57-
fullURL = fullURL + "datastore/"
58-
+ com.google.datastore.v1beta3.client.DatastoreFactory.VERSION + "/projects/"
57+
fullURL = fullURL
58+
+ com.google.datastore.v1beta3.client.DatastoreFactory.VERSION
59+
+ "/projects/"
5960
+ options.projectId();
6061
clientBuilder = clientBuilder.projectId(null).projectEndpoint(fullURL);
6162
}

0 commit comments

Comments
 (0)