This commit is contained in:
Sergey Chubaryan 2024-08-17 15:15:31 +03:00
parent 431c909a4f
commit afe520f631
2 changed files with 5 additions and 1 deletions

View File

@ -11,5 +11,9 @@ install:
source .venv/bin/activate
python3 -m pip install -r requirements.txt
# writes requiremets list to file
requirements:
pip freeze > requirements.txt
run-web:
locust --host http://localhost:8080

View File

@ -173,7 +173,7 @@ func main() {
go func() {
<-ctx.Done()
logger.Log().Msg("stopping service...")
logger.Log().Msg("stopping tcp listener...")
listener.Close()
}()