Skip to content

Commit

Permalink
feat: add client lib token for Liquibase (#925)
Browse files Browse the repository at this point in the history
  • Loading branch information
olavloite committed Mar 2, 2021
1 parent c6f902d commit 0d93d92
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -80,6 +80,8 @@ public class SpannerOptions extends ServiceOptions<Spanner, SpannerOptions> {

private static final String JDBC_API_CLIENT_LIB_TOKEN = "sp-jdbc";
private static final String HIBERNATE_API_CLIENT_LIB_TOKEN = "sp-hib";
private static final String LIQUIBASE_API_CLIENT_LIB_TOKEN = "sp-liq";

private static final String API_SHORT_NAME = "Spanner";
private static final String DEFAULT_HOST = "https://spanner.googleapis.com";
private static final ImmutableSet<String> SCOPES =
Expand Down Expand Up @@ -612,7 +614,8 @@ public static class Builder
ImmutableSet.of(
ServiceOptions.getGoogApiClientLibName(),
JDBC_API_CLIENT_LIB_TOKEN,
HIBERNATE_API_CLIENT_LIB_TOKEN);
HIBERNATE_API_CLIENT_LIB_TOKEN,
LIQUIBASE_API_CLIENT_LIB_TOKEN);
private TransportChannelProvider channelProvider;

@SuppressWarnings("rawtypes")
Expand Down

0 comments on commit 0d93d92

Please sign in to comment.