Skip to content

Commit ed542da

Browse files
committed
Stop/start: Adding compute fleet in output text
As we changed the behavior, just having Stopping/ Starting text might confuse the user. Hence explictly stating compute fleet text in output. Signed-off-by: Mohan Gandhi <[email protected]>
1 parent 68f0588 commit ed542da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/cfncluster/cfncluster.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def update(args):
169169

170170
def start(args):
171171
# Set resource limits on compute fleet to min/max/desired = 0/max/0
172-
print('Starting: %s' % args.cluster_name)
172+
print('Starting compute fleet : %s' % args.cluster_name)
173173
stack_name = ('cfncluster-' + args.cluster_name)
174174
config = cfnconfig.CfnClusterConfig(args)
175175

@@ -186,7 +186,7 @@ def start(args):
186186

187187
def stop(args):
188188
# Set resource limits on compute fleet to min/max/desired = 0/0/0
189-
print('Stopping: %s' % args.cluster_name)
189+
print('Stopping compute fleet : %s' % args.cluster_name)
190190
stack_name = ('cfncluster-' + args.cluster_name)
191191
config = cfnconfig.CfnClusterConfig(args)
192192

0 commit comments

Comments
 (0)