Skip to content

Commit

Permalink
grammar/typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanck committed Sep 19, 2023
1 parent 48ef055 commit dcd6630
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public Builder suffix(String newSuffix) {
}

/**
* Configures a {@link FileIO} supplier, which is used to dynamically refresh the file IO
* instance when a table is refreshed.
* Configures a {@link FileIO} supplier, which can potentially be used to dynamically refresh
* the file IO instance when a table is refreshed.
*
* @param newIoSupplier The file IO supplier
* @return this builder instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public Builder upsert(boolean enabled) {
* @return {@link Builder} to connect the iceberg table.
*/
@Experimental
public Builder tableRefreshInternal(Duration refreshInterval) {
public Builder tableRefreshInterval(Duration refreshInterval) {
this.tableRefreshInterval = refreshInterval;
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ public void testWriteRowWithWriteTableLoader() throws Exception {
FlinkSink.forRowData(dataStream)
.table(table)
.tableLoader(tableLoader)
.tableRefreshInternal(Duration.ofMillis(100))
.tableRefreshInterval(Duration.ofMillis(100))
.writeParallelism(parallelism)
.append();

Expand Down

0 comments on commit dcd6630

Please sign in to comment.