Skip to content
This repository was archived by the owner on Aug 31, 2022. It is now read-only.

Commit 16f30bd

Browse files
authored
Merge pull request #210 from spotify/bqjob-success
Make success hook public
2 parents 378cd74 + b250270 commit 16f30bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/flo-bigquery/src/main/java/com/spotify/flo/contrib/bigquery/BigQueryOperation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ BigQueryOperation<T> job(Fn<JobInfo> jobRequest) {
5252
/**
5353
* Specify some action to take on success. E.g. publishing a staging table.
5454
*/
55-
BigQueryOperation<T> success(F1<JobInfo, T> success) {
55+
public BigQueryOperation<T> success(F1<JobInfo, T> success) {
5656
this.success = Objects.requireNonNull(success);
5757
return this;
5858
}

0 commit comments

Comments
 (0)