mirror of https://github.com/apache/cloudstack.git
Disable notification interval if in 'debug' mode (for unit tests)
This commit is contained in:
parent
595b7e5c04
commit
35765419d1
|
|
@ -264,7 +264,7 @@
|
|||
cloudStack.ui.event.call('addNotification', {
|
||||
section: notification.section,
|
||||
desc: notification.desc,
|
||||
interval: 5000,
|
||||
interval: cloudStack.debug ? 0 : 5000,
|
||||
_custom: notification._custom,
|
||||
poll: function(args) {
|
||||
var complete = args.complete;
|
||||
|
|
|
|||
Loading…
Reference in New Issue