Skip to content

Commit

Permalink
Rename worker lock file
Browse files Browse the repository at this point in the history
Raise worker version to 247 (also server side)
  • Loading branch information
xu-shawn authored and ppigazzini committed Jan 9, 2025
1 parent 042c79e commit ae3f328
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Ronald de Man (syzygy1)
Sebastian Buchwald (UniQP)
sf-x
Shahin M. Shahin (peregrineshahin)
Shawn Xu (xu-shawn)
Siad Daboul (TopoIogist)
Stefano Cardanobile (Stefano80)
Stéphane Nicolet (snicolet)
Expand Down
2 changes: 1 addition & 1 deletion server/fishtest/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
according to the route/URL mapping defined in `__init__.py`.
"""

WORKER_VERSION = 246
WORKER_VERSION = 247


@exception_view_config(HTTPException)
Expand Down
2 changes: 1 addition & 1 deletion worker/sri.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"__version": 246, "updater.py": "Mg+pWOgGA0gSo2TuXuuLCWLzwGwH91rsW1W3ixg3jYauHQpRMtNdGnCfuD1GqOhV", "worker.py": "NW2mz+hDNprnOcMpw6k8rGUEXE4QvZwkWPma8kYg0uswQ7gQ+OIXBDFK7Fhz/Brt", "games.py": "8UyMjj/55AlxsO+2R1R92NasutgdHbLH6K9rxJfTD4cq02JTyOP93IoOZ1H7we9R"}
{"__version": 247, "updater.py": "Mg+pWOgGA0gSo2TuXuuLCWLzwGwH91rsW1W3ixg3jYauHQpRMtNdGnCfuD1GqOhV", "worker.py": "fnKb7BjtNafSyeNEDD4R8km3YFzO0SvQHVdn252B3lDsV2wxLr3mG6SxqCVw8Sqg", "games.py": "8UyMjj/55AlxsO+2R1R92NasutgdHbLH6K9rxJfTD4cq02JTyOP93IoOZ1H7we9R"}
4 changes: 2 additions & 2 deletions worker/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# So we make sure to use the locally installed one.


LOCK_FILE = Path(__file__).resolve().parent / "worker.lock"
LOCK_FILE = Path(__file__).resolve().parent / "fishtest_worker.lock"

# Minimum requirement of compiler version for Stockfish.
MIN_GCC_MAJOR = 7
Expand All @@ -69,7 +69,7 @@
MIN_CLANG_MAJOR = 8
MIN_CLANG_MINOR = 0

WORKER_VERSION = 246
WORKER_VERSION = 247
FILE_LIST = ["updater.py", "worker.py", "games.py"]
HTTP_TIMEOUT = 30.0
INITIAL_RETRY_TIME = 15.0
Expand Down

0 comments on commit ae3f328

Please sign in to comment.