diff --git a/pub_sub/javascript/order-processor/index.js b/pub_sub/javascript/order-processor/index.js index d0a5d1c4..48d8d133 100644 --- a/pub_sub/javascript/order-processor/index.js +++ b/pub_sub/javascript/order-processor/index.js @@ -8,7 +8,7 @@ const SERVER_PORT = process.env.SERVER_PORT || 5001; async function main() { const server = new DaprServer(SERVER_HOST, SERVER_PORT, DAPR_HOST, DAPR_HTTP_PORT); - // ßDapr subscription routes orders topic to this route + // Dapr subscription routes orders topic to this route server.pubsub.subscribe("order_pub_sub", "orders", (data) => { console.log("Subscriber received : " + JSON.stringify(data)) });