ppigazzini
ppigazzini
> Yes somene introduced a bug and they don't want to look what caused this for at least 3 months now..... Yeah, at example someone changed few days ago the...
I (over) commented the code of `delta_update_users.py`, see: https://github.com/ppigazzini/fishtest/blob/review_delta_update_users/server/utils/delta_update_users.py The delta update works ordering (form latest to earlier) the finished runs according to "last_updated", if that field is updated for...
@maximmasiutin if your instance is for development/test, on DEV I set the `task_duration` to 3 minutes merging a branch with a script (view the server script under Test a PR/branch...
> https://tests.stockfishchess.org/tests/view/644bfb62f609e0c9f1579ec0 > > This page takes too long to load. 8243 tasks, 50% with 0 games played.
> Is it caused by mongodb or by the mako rendering? Is should be the rendering. The stats page gets the whole `run` as well but it loads fast. https://tests.stockfishchess.org/tests/stats/644bfb62f609e0c9f1579ec0...
Thank you noob! Not reviewed yet, still coffeeless. PROD updated on the fly with: ```diff diff --git a/server/fishtest/views.py b/server/fishtest/views.py index 8b79f86..3e6796f 100644 --- a/server/fishtest/views.py +++ b/server/fishtest/views.py @@ -1290,6 +1290,10 @@...
```yaml git grep -n "Unable to access" server/fishtest/views.py:799: raise Exception(f"Unable to access developer repository {repo_url}: {str(e)}") server/fishtest/views.py:835: raise Exception(f"Unable to access developer repository {repo_url}: {str(e)}") server/fishtest/views.py:950: f"Unable to access developer...
msys2 ucrt64 builds an application that needs: - msys2 ucrt64 dlls, for fastchess they are: ``` c/msys64/ucrt64/bin/libgcc_s_seh-1.dll c/msys64/ucrt64/bin/libwinpthread-1.dll c/msys64/ucrt64/bin/libstdc++-6.dll ``` - Microsoft UCRT dlls If fastchess.exe does not find the...
Curiosities: - the example code uses snake case instead than camel case for the class naming - the classes are used only for the validation or are used in the...
Very interesting! I can use `Annotated` in my fastapi projects to validate the data as well (too lazy to read any advanced use of Pydantic until now). ```python from typing...