mirror of
https://github.com/Telecominfraproject/oopt-tai-implementations.git
synced 2025-10-29 09:12:34 +00:00
mux: update the TAI submodule
Signed-off-by: Wataru Ishida <wataru.ishid@gmail.com>
This commit is contained in:
@@ -6,7 +6,7 @@ services:
|
||||
- docker
|
||||
|
||||
before_install:
|
||||
- make -C tai_mux docker-image
|
||||
- make -C tai_mux builder
|
||||
|
||||
script:
|
||||
- TAI_DOCKER_CMD='make test' make -C tai_mux cmd
|
||||
|
||||
@@ -34,7 +34,7 @@ HEADERS := $(wildcard *.hpp $(TAI_LIB_DIR)/*.hpp $(TAI_FRAMEWORK_DIR)/*.hpp)
|
||||
OBJECTS := $(addprefix $(BUILDDIR)/,$(SOURCES:%.cpp=%.o))
|
||||
DEPS := $(addprefix $(BUILDDIR)/,$(SOURCES:%.cpp=%.d))
|
||||
|
||||
.PHONY = all meta test cmd docker docker-image bash clean clean-all
|
||||
.PHONY = all meta test cmd docker builder bash clean clean-all
|
||||
|
||||
all: $(PROG)
|
||||
|
||||
@@ -61,7 +61,7 @@ cmd:
|
||||
docker:
|
||||
TAI_DOCKER_CMD="make" $(MAKE) cmd
|
||||
|
||||
docker-image:
|
||||
builder:
|
||||
$(MAKE) -C $(TAI_DIR) $@
|
||||
|
||||
bash:
|
||||
|
||||
@@ -41,7 +41,7 @@ namespace tai::mux {
|
||||
m_pa = std::make_shared<StaticPlatformAdapter>(0, services);
|
||||
break;
|
||||
default:
|
||||
ERROR("unsupported platform_adapter: %s", pa_name.c_str());
|
||||
TAI_ERROR("unsupported platform_adapter: %s", pa_name.c_str());
|
||||
throw Exception(TAI_STATUS_NOT_SUPPORTED);
|
||||
}
|
||||
}
|
||||
|
||||
Submodule tai_mux/oopt-tai updated: 4ca1e6d61f...0a483c5c95
@@ -27,7 +27,7 @@ namespace tai::mux {
|
||||
auto dst = std::make_shared<Attribute>(meta, src);
|
||||
auto ret = convert_oid(ctx->object_type, oid, dst, dst, true);
|
||||
if ( ret != TAI_STATUS_SUCCESS ) {
|
||||
ERROR("failed to convert oid of attribute: %d", src.id);
|
||||
TAI_ERROR("failed to convert oid of attribute: %d", src.id);
|
||||
continue;
|
||||
}
|
||||
attrs.emplace_back(dst);
|
||||
|
||||
Reference in New Issue
Block a user