(response)
| 528 | } |
| 529 | |
| 530 | _setResponse(response) { |
| 531 | |
| 532 | if (this.response && |
| 533 | !this.response.isBoom && |
| 534 | this.response !== response && |
| 535 | this.response.source !== response.source) { |
| 536 | |
| 537 | this.response._close?.(); |
| 538 | } |
| 539 | |
| 540 | if (this.info.completed) { |
| 541 | response._close?.(); |
| 542 | |
| 543 | return; |
| 544 | } |
| 545 | |
| 546 | this.response = response; |
| 547 | } |
| 548 | |
| 549 | _setState(name, value, options) { |
| 550 |
no test coverage detected