( self, force = False )
| 79 | |
| 80 | |
| 81 | def UpdateDiagnostics( self, force = False ): |
| 82 | if force or not self._async_diags: |
| 83 | self.UpdateWithNewDiagnostics( self._parse_request.Response(), False ) |
| 84 | else: |
| 85 | # We need to call the response method, because it might throw an exception |
| 86 | # or require extra config confirmation, even if we don't actually use the |
| 87 | # diagnostics. |
| 88 | self._parse_request.Response() |
| 89 | |
| 90 | |
| 91 | def UpdateWithNewDiagnostics( self, diagnostics, async_message ): |
no test coverage detected