Skip to content

Commit

Permalink
Merge pull request #6 from Senzing/issue-3.dockter.1
Browse files Browse the repository at this point in the history
Shipped with SenzingAPI 1.6.1
  • Loading branch information
docktermj authored May 29, 2021
2 parents dda0561 + 2100e53 commit 37b0403
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
[markdownlint](https://dlaa.me/markdownlint/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.0] - 2019-03-02

### Added to 1.3.0

- Shipped with SenzingAPI 1.6.1

## [1.2.0] - 2018-12-07

### Changed in 1.2.0
### Added to 1.2.0

- Shipped with SenzingAPI 1.4.0

Expand Down
6 changes: 3 additions & 3 deletions G2ConfigTables.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ def loadConfig(self, tableName):
if tableName.upper() == 'CFG_DSRC':
cfgNodeEntry['ID'] = rowNode['DSRC_ID'];
cfgNodeEntry['DSRC_CODE'] = rowNode['DSRC_CODE'];
cfgDict[cfgNodeEntry['ID']] = cfgNodeEntry
cfgDict[cfgNodeEntry['DSRC_CODE']] = cfgNodeEntry
elif tableName.upper() == 'CFG_ETYPE':
cfgNodeEntry['ID'] = rowNode['ETYPE_ID'];
cfgNodeEntry['ETYPE_CODE'] = rowNode['ETYPE_CODE'];
cfgDict[cfgNodeEntry['ID']] = cfgNodeEntry
cfgDict[cfgNodeEntry['ETYPE_CODE']] = cfgNodeEntry
elif tableName.upper() == 'CFG_FTYPE':
cfgNodeEntry['ID'] = rowNode['FTYPE_ID'];
cfgNodeEntry['FTYPE_CODE'] = rowNode['FTYPE_CODE'];
cfgNodeEntry['DERIVED'] = rowNode['DERIVED'];
cfgDict[cfgNodeEntry['ID']] = cfgNodeEntry
cfgDict[cfgNodeEntry['FTYPE_CODE']] = cfgNodeEntry
elif tableName.upper() == 'CFG_ERRULE':
cfgNodeEntry['ID'] = rowNode['ERRULE_ID'];
cfgNodeEntry['ERRULE_CODE'] = rowNode['ERRULE_CODE'];
Expand Down

0 comments on commit 37b0403

Please sign in to comment.