3.0.3: Cant fix team avg. removed.

This commit is contained in:
2026-01-29 23:44:02 +08:00
parent 3bb3d61c2e
commit ba5bf14ee2
10 changed files with 220 additions and 84 deletions

Binary file not shown.

View File

@@ -239,7 +239,7 @@ def main(force_all: bool = False, workers: int = 1):
result["last_match_date"],
)
success_count += 1
if processed_count % 4 == 0:
if processed_count % 2 == 0:
conn_l3.commit()
logger.info(f"Progress: {processed_count}/{total_players} ({success_count} success, {error_count} errors)")
else:
@@ -267,7 +267,7 @@ def main(force_all: bool = False, workers: int = 1):
continue
processed_count = idx
if processed_count % 4 == 0:
if processed_count % 2 == 0:
conn_l3.commit()
logger.info(f"Progress: {processed_count}/{total_players} ({success_count} success, {error_count} errors)")