[#218] Object Size defined in int

Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
This commit is contained in:
Elizaveta Chichindaeva 2022-05-24 16:36:17 +03:00 committed by Anastasia Prasolova
parent 0799e15526
commit 6de6af81c7
3 changed files with 6 additions and 6 deletions

View file

@ -11,8 +11,8 @@ CONTAINER_WAIT_INTERVAL = "1m"
NEOFS_EPOCH_TIMEOUT = (os.getenv("NEOFS_EPOCH_TIMEOUT") if os.getenv("NEOFS_EPOCH_TIMEOUT")
else os.getenv("NEOFS_IR_TIMERS_EPOCH", "300s"))
SIMPLE_OBJ_SIZE = "1000"
COMPLEX_OBJ_SIZE = "2000"
SIMPLE_OBJ_SIZE = 1000
COMPLEX_OBJ_SIZE = 2000
MAINNET_BLOCK_TIME = os.getenv('MAINNET_BLOCK_TIME', "1s")
MAINNET_TIMEOUT = os.getenv('MAINNET_TIMEOUT', "1min")