diff --git a/Makefile b/Makefile index 50c2e1a..bcc4a88 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,7 @@ DEV_IMAGE_PY ?= registry.spb.yadro.com/tools/pytest-neofs-x86_64:7 SETUP_DIR ?= $(CURDIR)/.setup DEV_ENV_DEPLOY_DIR ?= /opt/dev-env +DOCKER_NETWORK = --network host ifeq ($(shell uname -s),Darwin) DOCKER_NETWORK = --network bridge -p 389:389 -p 636:636 endif diff --git a/robot/resources/lib/python_keywords/json_transformers.py b/robot/resources/lib/python_keywords/json_transformers.py index 218d9fd..6229974 100644 --- a/robot/resources/lib/python_keywords/json_transformers.py +++ b/robot/resources/lib/python_keywords/json_transformers.py @@ -148,7 +148,7 @@ def decode_common_fields(data: dict): data["objectID"] = json_reencode(data["objectID"]["value"]) data["header"]["containerID"] = json_reencode(data["header"]["containerID"]["value"]) data["header"]["ownerID"] = json_reencode(data["header"]["ownerID"]["value"]) - data["header"]["homomorphicHash"] = json_reencode(data["header"]["homomorphicHash"]["sum"]) + # data["header"]["homomorphicHash"] = json_reencode(data["header"]["homomorphicHash"]["sum"]) data["header"]["payloadHash"] = json_reencode(data["header"]["payloadHash"]["sum"]) data["header"]["version"] = ( f"{data['header']['version']['major']}{data['header']['version']['minor']}"