Skip to content

Commit

Permalink
DM: if vendor name is not configured using UI, DM crashes. Fixed.
Browse files Browse the repository at this point in the history
Change-Id: I86815593c051acf33df2ac93c3b05790b93478dd
Closes-Bug: #1606729
  • Loading branch information
sbalineni committed Jul 28, 2016
1 parent 123d060 commit 4d3f81f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/device-manager/device_manager/db.py
Expand Up @@ -726,7 +726,7 @@ def uve_send(self, deleted=False):
ip_address=self.management_ip,
connected_bgp_router=self.bgp_router,
auto_conf_enabled=self.vnc_managed,
product_info=self.vendor + ':' + self.product)
product_info=str(self.vendor) + ':' + str(self.product))
if deleted:
pr_trace.deleted = True
pr_msg = UvePhysicalRouterConfigTrace(
Expand Down

0 comments on commit 4d3f81f

Please sign in to comment.