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