Skip to content

Commit

Permalink
examples
Browse files Browse the repository at this point in the history
Signed-off-by: Sidhant Kohli <[email protected]>
  • Loading branch information
kohlisid committed Jan 17, 2024
1 parent dffdc5f commit 2742b56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/map/multiproc_map/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: image
image:
docker buildx build --no-cache -t "quay.io/kohlisid/numaflow-python/refactor:v0.7.2" --platform linux/amd64,linux/arm64 . --push
docker build -t "quay.io/numaio/numaflow-python/multiproc:v0.7.0" .
# Github CI runner uses platform linux/amd64. If your local environment don't, the image built by command above might not work
# under the CI E2E test environment.
# To build an image that supports multiple platforms(linux/amd64,linux/arm64) and push to quay.io, use the following command
Expand Down
2 changes: 1 addition & 1 deletion examples/sideinput/simple-sideinput/udf/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def watcher():
This function is used to start the GRPC server and the watcher thread.
"""
daemon = Thread(target=watcher, daemon=True, name="Monitor")
grpc_server = MapServer(mapper_instance=my_handler)
grpc_server = MapServer(my_handler)
thread_server = Thread(target=grpc_server.start, daemon=True, name="GRPC Server")
daemon.start()
thread_server.start()
Expand Down

0 comments on commit 2742b56

Please sign in to comment.