# HG changeset patch # User Tuomo Valkonen # Date 1748923362 18000 # Node ID 41adab2ef3f1489e4211d0e17f70e8bdd194f665 # Parent f94987ced25ef47d281591ad9aa013a9b253e6df Do not report questions from borg as errors. Lack of answer should result in a separate error afterwards. diff -r f94987ced25e -r 41adab2ef3f1 borgend/backup.py --- a/borgend/backup.py Mon Jun 02 15:50:05 2025 -0500 +++ b/borgend/backup.py Mon Jun 02 23:02:42 2025 -0500 @@ -368,9 +368,9 @@ status, callback=self.__status_unlocked() elif t=='question_prompt' or t=='question_prompt_retry': - self.logger.error('Did not expect to receive question prompt from borg') - with self._cond: - self.current_operation.add_error(Errors.ERRORS) + self.logger.warn('Did not expect to receive question prompt from borg (%s)' % msg) + #with self._cond: + # self.current_operation.add_error(Errors.ERRORS) # TODO: terminate org? Send 'NO' reply? elif (t=='question_invalid_answer' or t=='question_accepted_default'