Skip to content

Commit

Permalink
Merge pull request #24 from jihyungSong/master
Browse files Browse the repository at this point in the history
Modify updated_version condition
  • Loading branch information
jihyungSong authored Jun 13, 2023
2 parents d9c5e46 + 896e069 commit e99d7e2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/spaceone/plugin/service/plugin_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,7 @@ def _select_endpoint(self, plugin_ref, updated_version=None):

endpoint_info = {'endpoint': endpoint}

if updated_version and installed_plugin.version != updated_version:
_LOGGER.debug(f'[_select_endpoint] version: {installed_plugin.version} | '
f'updated_version: {updated_version}')

if updated_version:
endpoint_info['updated_version'] = updated_version

return endpoint_info
Expand Down

0 comments on commit e99d7e2

Please sign in to comment.