We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60a5f94 commit 337185dCopy full SHA for 337185d
packages/dsw-document-worker/dsw/document_worker/worker.py
@@ -260,6 +260,10 @@ def store_document(self):
260
def finalize(self):
261
SentryReporter.set_tags(phase='finalize')
262
doc = self.safe_doc
263
+ print(self.safe_doc)
264
+ print(self.safe_doc.project_uuid)
265
+ print(typing.reveal_type(self.safe_doc))
266
+ print(self.safe_doc.non_existing_uuid)
267
final_file = self.safe_final_file
268
file_name = DocumentNameGiver.name_document(doc, final_file)
269
doc.finished_at = datetime.datetime.now(tz=datetime.UTC)
0 commit comments