From 0ae010b073085388d9828eb17f0adb2ebdd96ec0 Mon Sep 17 00:00:00 2001 From: Federico Tedin Date: Wed, 18 Dec 2024 17:48:29 +0100 Subject: [PATCH] Fix test url --- k6/foundations/16.grpc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k6/foundations/16.grpc.js b/k6/foundations/16.grpc.js index 992b790..4c6ee28 100644 --- a/k6/foundations/16.grpc.js +++ b/k6/foundations/16.grpc.js @@ -1,7 +1,7 @@ import { Client, StatusOK } from 'k6/net/grpc'; import { check, sleep } from 'k6'; -const BASE_URL = __ENV.BASE_URL || 'http://localhost:3334'; +const BASE_URL = __ENV.BASE_GRPC_URL || 'localhost:3334'; const client = new Client(); client.load(['definitions'], '../../../proto/quickpizza.proto');