Skip to content

Commit

Permalink
Fix inconsistent bigtableColumnFamilyName argument (#384)
Browse files Browse the repository at this point in the history
Co-authored-by: meredithslota <[email protected]>
  • Loading branch information
anantdamle and meredithslota authored Jun 6, 2023
1 parent 0f8f237 commit 6ebd1d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public interface BigtableCsvOptions extends CloudBigtableOptions {

@Description("The name of the BigTable column family to put the csv columns under")
@Default.String("csv")
String getBigTableColumnFamilyName();
String getBigtableColumnFamilyName();

void setBigtableColumnFamilyName(String bigTableColumnFamilyName);

Expand Down Expand Up @@ -237,7 +237,7 @@ public static void main(String[] args) throws IllegalArgumentException {
.setCsvFormat(options.getCsvFormat().getFormat())
.setCsvHeaders(options.getHeaders())
.setRowKeyColumnName(options.getRowKeyHeader())
.setBigTableFamilyName(options.getBigTableColumnFamilyName())
.setBigTableFamilyName(options.getBigtableColumnFamilyName())
.build()))
.apply("WriteToBigtable", CloudBigtableIO.writeToTable(config));

Expand Down

0 comments on commit 6ebd1d6

Please sign in to comment.