Skip to content

Commit 11e24d8

Browse files
Merge pull request singnet#317 from singnet/masc/fix-imports
[#Bugfix] Add attention_broker_pb2 in BUILD
2 parents 30e3101 + 3ff6ceb commit 11e24d8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/hyperon_das/cache/BUILD

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ py_library(
2020
"//hyperon_das:logger",
2121
"//hyperon_das:utils",
2222
"//hyperon_das/grpc:attention_broker_pb2_grpc",
23+
"//hyperon_das/grpc:attention_broker_pb2",
2324
"//hyperon_das/grpc:common_pb2",
2425
requirement("grpcio"),
2526
],

src/scripts/build.sh

-2
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,3 @@ docker run --rm \
5050
--workdir $CONTAINER_WORKSPACE_DIR \
5151
${IMAGE_NAME} \
5252
./scripts/bazel_build.sh
53-
54-
docker run --rm --volume $LOCAL_BIN_DIR:/app/bin/evolution evolution-builder

src/tests/python/integration/test_attention_broker_gateway.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ def ping(self, request, context):
2121

2222
def correlate(self, request, context):
2323
global RECEIVED
24-
RECEIVED = request.handle_list
24+
RECEIVED = request.list
2525
return common.Ack(error=0, msg="OK")
2626

2727
def stimulate(self, request, context):
2828
global RECEIVED
29-
RECEIVED = request.handle_count
29+
RECEIVED = request.map
3030
return common.Ack(error=0, msg="OK")
3131

3232

0 commit comments

Comments
 (0)