mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 19:30:39 -03:30
always discard events beneath line threshold
This commit is contained in:
parent
cdbcf4c128
commit
46758f1e7e
@ -115,10 +115,11 @@ function JobEventEngine ($q) {
|
||||
|
||||
this.chain = this.chain
|
||||
.then(() => {
|
||||
if (data.end_line < this.lines.min) {
|
||||
return $q.resolve();
|
||||
}
|
||||
|
||||
if (!this.isActive()) {
|
||||
if (data.end_line < (this.lines.min)) {
|
||||
return $q.resolve();
|
||||
}
|
||||
this.start();
|
||||
} else if (data.event === JOB_END) {
|
||||
if (this.isPaused()) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user