1
0

[HUDI-3730] Keep metasync configs backward compatible (#6221)

This commit is contained in:
Shiyan Xu
2022-07-27 05:30:44 -05:00
committed by GitHub
parent e5faf2cc84
commit 717f159bfd
4 changed files with 36 additions and 27 deletions

View File

@@ -37,9 +37,9 @@ import java.util.Properties;
*
* @Experimental
*/
public class AWSGlueCatalogSyncTool extends HiveSyncTool {
public class AwsGlueCatalogSyncTool extends HiveSyncTool {
public AWSGlueCatalogSyncTool(Properties props, Configuration hadoopConf) {
public AwsGlueCatalogSyncTool(Properties props, Configuration hadoopConf) {
super(props, hadoopConf);
}
@@ -56,6 +56,6 @@ public class AWSGlueCatalogSyncTool extends HiveSyncTool {
cmd.usage();
System.exit(0);
}
new AWSGlueCatalogSyncTool(params.toProps(), new Configuration()).syncHoodieTable();
new AwsGlueCatalogSyncTool(params.toProps(), new Configuration()).syncHoodieTable();
}
}