Skip to content
Open
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
4 changes: 2 additions & 2 deletions awscli/customizations/ecs/executecommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import errno
import json
import logging
from subprocess import check_call
from subprocess import check_call, DEVNULL

from awscli.clidriver import CLIOperationCaller, ServiceOperation
from awscli.compat import ignore_user_entered_signals
Expand Down Expand Up @@ -75,7 +75,7 @@ def invoke(self, service_name, operation_name, parameters, parsed_globals):
# before calling execute-command to ensure that
# session-manager-plugin is installed
# before execute-command-command is made
check_call(["session-manager-plugin"])
check_call(["session-manager-plugin"], stdout=DEVNULL)
client = self._session.create_client(
service_name,
region_name=parsed_globals.region,
Expand Down