Skip to content

Commit

Permalink
Fix typo in plugin download error log message
Browse files Browse the repository at this point in the history
  • Loading branch information
rajendra-dendukuri committed Oct 13, 2023
1 parent e728870 commit 01d1777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usr/lib/ztp/ztp-engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def __downloadPlugins(self):
abort = True

except Exception as e:
logger.error('Exception [%s] encountered while verifying plugin for configuration section %s. Marking it as FAILED.' % (str(e), sec))
logger.error('Exception [%s] encountered while downloading plugin for configuration section %s. Marking it as FAILED.' % (str(e), sec))
section['error'] = 'Exception [%s] encountered while verifying the plugin' % (str(e))
section['start-timestamp'] = t
self.objztpJson.updateStatus(section, 'FAILED')
Expand Down

0 comments on commit 01d1777

Please sign in to comment.