re-use base config model

This commit is contained in:
Jonathan Shook
2021-12-22 14:05:19 -06:00
parent eae115afae
commit ceee8c59c0
3 changed files with 17 additions and 7 deletions

View File

@@ -29,6 +29,6 @@ public class DynamoDBDriverAdapter extends BaseDriverAdapter<DynamoDBOp, DynamoD
@Override
public NBConfigModel getConfigModel() {
return DynamoDBSpace.getConfigModel();
return super.getConfigModel().add(DynamoDBSpace.getConfigModel());
}
}