File tree 1 file changed +2
-3
lines changed
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/spanner
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,7 @@ public abstract class SpannerConfig implements Serializable {
82
82
83
83
public abstract @ Nullable ValueProvider <Duration > getPartitionReadTimeout ();
84
84
85
- @ VisibleForTesting
86
- abstract @ Nullable ServiceFactory <Spanner , SpannerOptions > getServiceFactory ();
85
+ public abstract @ Nullable ServiceFactory <Spanner , SpannerOptions > getServiceFactory ();
87
86
88
87
public abstract @ Nullable ValueProvider <Boolean > getDataBoostEnabled ();
89
88
@@ -267,7 +266,7 @@ public SpannerConfig withRetryableCodes(ImmutableSet<Code> retryableCodes) {
267
266
268
267
/** Specifies the service factory to create instance of Spanner. */
269
268
@ VisibleForTesting
270
- SpannerConfig withServiceFactory (ServiceFactory <Spanner , SpannerOptions > serviceFactory ) {
269
+ public SpannerConfig withServiceFactory (ServiceFactory <Spanner , SpannerOptions > serviceFactory ) {
271
270
return toBuilder ().setServiceFactory (serviceFactory ).build ();
272
271
}
273
272
You can’t perform that action at this time.
0 commit comments