From 7a6987a7f17804902ba5e470b1a93cf7bdef978d Mon Sep 17 00:00:00 2001 From: Chris Wolfe Date: Mon, 19 Feb 2018 09:59:52 -0600 Subject: [PATCH] note --- tests/test_ssm/test_ssm_boto3.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_ssm/test_ssm_boto3.py b/tests/test_ssm/test_ssm_boto3.py index 5d6588732..0e8a770b3 100644 --- a/tests/test_ssm/test_ssm_boto3.py +++ b/tests/test_ssm/test_ssm_boto3.py @@ -466,7 +466,9 @@ def test_send_command(): params = {'commands': ['#!/bin/bash\necho \'hello world\'']} client = boto3.client('ssm', region_name='us-east-1') + # note the timeout is determined server side, so this is a simpler check. before = datetime.datetime.now() + response = client.send_command( InstanceIds=['i-123456'], DocumentName=ssm_document,