Skip to content

Commit 42b4d5e

Browse files
committed
Some fix and logs
1 parent a46e310 commit 42b4d5e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

scan_to_paperless/process.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -1981,7 +1981,9 @@ async def save_config(config: schema.Configuration, config_file_name: Path) -> N
19811981
yaml.default_flow_style = False
19821982
temp_path = Path(str(config_file_name) + "_")
19831983
async with aiofiles.open(temp_path, "w", encoding="utf-8") as config_file:
1984-
await config_file.write(yaml.dump(config))
1984+
out = io.StringIO()
1985+
yaml.dump(config, out)
1986+
await config_file.write(out.getvalue())
19851987
temp_path.rename(config_file_name)
19861988

19871989

@@ -2102,7 +2104,10 @@ async def _process(
21022104
async def _task(status: scan_to_paperless.status.Status) -> None:
21032105
while True:
21042106
status.set_current_folder(None)
2107+
# Be sure that the status is up to date
2108+
await asyncio.sleep(0.1)
21052109
name, job_type, step = status.get_next_job()
2110+
print(f"Processing '{name}' as {job_type}...")
21062111

21072112
if job_type in (
21082113
scan_to_paperless.status.JobType.TRANSFORM,
@@ -2183,6 +2188,8 @@ async def _task(status: scan_to_paperless.status.Status) -> None:
21832188
msg = f"Unknown job type: {job_type}"
21842189
raise ValueError(msg)
21852190

2191+
print(f"End processing '{name}' as {job_type}...")
2192+
21862193

21872194
def main() -> None:
21882195
"""Process the scanned documents."""

0 commit comments

Comments
 (0)