Skip to content

Commit

Permalink
Update 9006: ignore exception when add tungsten provider to physical …
Browse files Browse the repository at this point in the history
…network
  • Loading branch information
weizhouapache committed May 2, 2024
1 parent 93be554 commit 4eb9b77
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3882,7 +3882,11 @@ public PhysicalNetworkVO doInTransaction(TransactionStatus status) {
addDefaultInternalLbProviderToPhysicalNetwork(pNetwork.getId());

//Add tungsten network service provider
addDefaultTungstenProviderToPhysicalNetwork(pNetwork.getId());
try {
addDefaultTungstenProviderToPhysicalNetwork(pNetwork.getId());
} catch (Exception ex) {
s_logger.warn("Failed to add Tungsten provider to physical network due to:", ex.getMessage());
}

// Add the config drive provider
addConfigDriveToPhysicalNetwork(pNetwork.getId());
Expand Down

0 comments on commit 4eb9b77

Please sign in to comment.