diff --git a/docs/architecture/workers/README.md b/docs/architecture/workers/README.md index d25b0adb4..dd0d2fb1f 100644 --- a/docs/architecture/workers/README.md +++ b/docs/architecture/workers/README.md @@ -8,7 +8,7 @@ The game worker is subordinated to the [game](game). The worker has two componen The initialization of the worker has the responsibility of getting the user code and a set of options that the avatar uses at initialization. When the user updates the code in the [code editor](https://ace.c9.io/), the code gets saved in the database. -Updating the code of an user is done with the help of the database through the [game API](game-api). The game API resource for getting the code and for posting new code is shared: when a GET is made, we receive the avatar code, a POST is made, we update the avatar code. +Updating the code of a user is done with the help of the database through the [game API](game-api). The game API resource for getting the code and for posting new code is shared: when a GET is made, we receive the avatar code, a POST is made, we update the avatar code. The code and options are saved inside a directory. The directory is built when the `initilization.py` file is executed. The [LocalWorkerManager](worker-manager)(from [Game](game)) does not call the initialization.py function, updating the files by hand, then running the service.py. The [KubernetesWorkerManager](worker-manger)(from [Game](game)) run both functions by running the shell file `run.py`.