Skip to content

Commit

Permalink
test: update executor code
Browse files Browse the repository at this point in the history
  • Loading branch information
harshachinta committed Dec 15, 2023
1 parent 99ae565 commit a1218a3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions google-cloud-spanner-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-spanner-executor-v1</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-spanner-executor-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down Expand Up @@ -168,7 +171,7 @@
</descriptors>
<archive>
<manifest>
<mainClass>com.google.cloud.executor.spanner.WorkerProxy</mainClass>
<mainClass>com.google.cloud.spanner.executor.WorkerProxy</mainClass>
</manifest>
</archive>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.executor.spanner;
package com.google.cloud.spanner.executor;

import static com.google.cloud.spanner.TransactionRunner.TransactionCallable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
* limitations under the License.
*/

package com.google.cloud.executor.spanner;
package com.google.cloud.spanner.executor;

import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.auth.http.HttpTransportFactory;
import com.google.cloud.executor.spanner.CloudClientExecutor.ExecutionFlowContext;
import com.google.cloud.spanner.executor.CloudClientExecutor.ExecutionFlowContext;
import com.google.cloud.spanner.ErrorCode;
import com.google.cloud.spanner.SpannerException;
import com.google.cloud.spanner.SpannerExceptionFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.executor.spanner;
package com.google.cloud.spanner.executor;

import com.google.cloud.spanner.ErrorCode;
import com.google.cloud.spanner.SpannerExceptionFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.google.cloud.executor.spanner;
package com.google.cloud.spanner.executor;

import static java.nio.charset.StandardCharsets.UTF_8;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
* limitations under the License.
*/

package com.google.cloud.executor.spanner;
package com.google.cloud.spanner.executor;

import com.google.cloud.spanner.ErrorCode;
import com.google.cloud.spanner.SpannerExceptionFactory;

import io.grpc.Server;
import io.grpc.ServerBuilder;
import io.grpc.protobuf.services.HealthStatusManager;
Expand Down
1 change: 0 additions & 1 deletion google-cloud-spanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-spanner-executor-v1</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
Expand Down

0 comments on commit a1218a3

Please sign in to comment.