13774eb6 by 周伟奇

Merge branch 'feature/main' into feature/mssql

2 parents 692286c5 b8bcd0dd
...@@ -163,7 +163,7 @@ class Command(BaseCommand, LoggerMixin): ...@@ -163,7 +163,7 @@ class Command(BaseCommand, LoggerMixin):
163 start_time = time.time() 163 start_time = time.time()
164 ocr_response = requests.post(self.ocr_url, json=json_data) 164 ocr_response = requests.post(self.ocr_url, json=json_data)
165 if ocr_response.status_code != 200: 165 if ocr_response.status_code != 200:
166 raise OCR1Exception('{0} ocr status code: {0}'.format(self.log_base, ocr_response.status_code)) 166 raise OCR1Exception('{0} ocr status code: {1}'.format(self.log_base, ocr_response.status_code))
167 except Exception as e: 167 except Exception as e:
168 self.folder_log.warn('{0} [ocr failed] [times={1}] [img_path={2}] [error={3}]'.format( 168 self.folder_log.warn('{0} [ocr failed] [times={1}] [img_path={2}] [error={3}]'.format(
169 self.log_base, times, img_path, traceback.format_exc())) 169 self.log_base, times, img_path, traceback.format_exc()))
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!