From 676142dee472a8db4d5d40880518a91b69d206b9 Mon Sep 17 00:00:00 2001 From: Sebastian Tiedtke Date: Sat, 6 Apr 2024 16:13:14 -0400 Subject: [PATCH] Fix comment --- examples/grpc-samples/services.md | 2 +- internal/api/runme/runner/v2alpha1/runner.proto | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/grpc-samples/services.md b/examples/grpc-samples/services.md index 9e87e5039..66b630c5c 100644 --- a/examples/grpc-samples/services.md +++ b/examples/grpc-samples/services.md @@ -85,5 +85,5 @@ grpcurl \ -cert /tmp/runme/tls/cert.pem \ -key /tmp/runme/tls/key.pem \ -d @ \ - 127.0.0.1:9999 runme.runner.v1.RunnerService/ResolveVars < complex-script.json + 127.0.0.1:9999 runme.runner.v1.RunnerService/ResolveProgram < complex-script.json ``` diff --git a/internal/api/runme/runner/v2alpha1/runner.proto b/internal/api/runme/runner/v2alpha1/runner.proto index 51089122e..ea529a4b1 100644 --- a/internal/api/runme/runner/v2alpha1/runner.proto +++ b/internal/api/runme/runner/v2alpha1/runner.proto @@ -267,7 +267,7 @@ service RunnerService { // other fields will be ignored. rpc Execute(stream ExecuteRequest) returns (stream ExecuteResponse) {} - // ResolveVars resolves variables from a script or a list of commands + // ResolveProgram resolves variables from a script or a list of commands // using the provided sources, which can be a list of environment variables, // a session, or a project. // For now, the resolved variables are only the exported ones using `export`.