Skip shard count test in check mode. (#3329)

The shard count is not available in check mode.
reviewable/pr18780/r1
Matt Clay 9 years ago committed by GitHub
parent 33be2d4a7e
commit 55e8996842

@ -857,7 +857,7 @@ def create_stream(client, stream_name, number_of_shards=1, retention_period=None
stream_found, stream_msg, current_stream = (
find_stream(client, stream_name, check_mode=check_mode)
)
if stream_found:
if stream_found and not check_mode:
if current_stream['ShardsCount'] != number_of_shards:
err_msg = 'Can not change the number of shards in a Kinesis Stream'
return success, changed, err_msg, results

Loading…
Cancel
Save