Skip to content

Removing blocker when using integrated auth on Mac/Linux #214

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

Merged
merged 1 commit into from
Jul 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 0 additions & 7 deletions mssqlcli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def run_cli_with(options):
display_telemetry_message()

display_version_message(options)
display_integrated_auth_message_for_non_windows(options)

configure_and_update_options(options)

Expand Down Expand Up @@ -77,12 +76,6 @@ def create_config_dir_for_first_use():
return False


def display_integrated_auth_message_for_non_windows(options):
if platform.system().lower() != 'windows' and options.integrated_auth:
options.integrated_auth = False
print(u'Integrated authentication not supported on this platform')


def display_version_message(options):
if options.version:
print('Version:', __version__)
Expand Down
2 changes: 1 addition & 1 deletion mssqlcli/mssqlclioptionsparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def create_parser():
help=u'SQL Server instance name or address.')

args_parser.add_argument(
u'-I', u'--integrated',
u'-E', u'--integrated',
dest=u'integrated_auth',
action=u'store_true',
default=False,
Expand Down