Skip to content

Commit

Permalink
Updates on update_digest_api_address service
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolea Plesco committed Aug 18, 2022
1 parent 48031d5 commit 0cf2161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ted_sws/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def ID_MANAGER_API_HOST(self) -> str:
return v if v else "localhost"

@property
def OLD_ID_MANAGER_API_HOST(self) -> str:
def ID_MANAGER_OLD_API_HOST(self) -> str:
v: str = EnvConfigResolver().config_resolve()
return v if v else "localhost"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def update_digest_api_address_for_mapping_suite(mapping_suite: MappingSuite,
current_digest_api_address: str = config.OLD_ID_MANAGER_API_HOST,
current_digest_api_address: str = config.ID_MANAGER_OLD_API_HOST,
new_digest_api_address: str = config.ID_MANAGER_API_HOST,
) -> MappingSuite:
"""
Expand Down

0 comments on commit 0cf2161

Please sign in to comment.