Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[config] Add Initial draft of Breakout Mode subcommand #766

Merged
merged 17 commits into from
Jul 23, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import ipaddress
from swsssdk import ConfigDBConnector, SonicV2Connector, SonicDBConfig
from minigraph import parse_device_desc_xml
from config_mgmt import ConfigMgmt, ConfigMgmtDPB
samaity marked this conversation as resolved.
Show resolved Hide resolved
from config_mgmt import ConfigMgmtDPB

import aaa
import mlnx
Expand Down Expand Up @@ -246,7 +246,7 @@ def breakout_warnUser_extraTables(cm, final_delPorts, confirm=True):
return

def breakout_Ports(cm, delPorts=list(), addPorts=list(), portJson=dict(), \
force=False, loadDefConfig=True, verbose=False):
force=False, loadDefConfig=False, verbose=False):

deps, ret = cm.breakOutPort(delPorts=delPorts, addPorts = addPorts, \
samaity marked this conversation as resolved.
Show resolved Hide resolved
portJson=portJson, force=force, loadDefConfig=loadDefConfig)
Expand Down