Clarify instance state after launch submission

After submitting a launch instance-workflow, an instance is technically
only scheduled for launch - and not yet actually launched.  This patch
reflects this in the message presented in the top right corner.

Closes-Bug: #1287051

Change-Id: Ie86e61c0db561eeb64101c55d304b07191f33ea8
Co-Authored-By: Trygve Vea <trygve.vea@gmail.com>
This commit is contained in:
manchandavishal 2019-01-24 11:40:08 +00:00
parent 37aec60a8f
commit 787ede8d94
1 changed files with 4 additions and 2 deletions

View File

@ -332,8 +332,10 @@
function successMessage() {
var numberInstances = model.newInstanceSpec.instance_count;
var message = ngettext('%s instance launched.', '%s instances launched.', numberInstances);
toast.add('success', interpolate(message, [numberInstances]));
var message = ngettext('Scheduled of %s instance.',
'Scheduled of %s instances.',
numberInstances);
toast.add('info', interpolate(message, [numberInstances]));
}
function cleanNullProperties(finalSpec) {