You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codec-server/README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,9 @@ Configuring OIDC is outside the scope of this sample, but please see the [server
32
32
33
33
## Summary
34
34
35
-
This document outlines the HTTP protocol for codec servers. This functionality allows users to deploy a codec centrally rather than the previous architecture that required a `tctl` plugin on developer workstations. This makes it easier to secure access to any required encryption keys and simplifies the developer experience.
35
+
This document outlines the HTTP protocol for codec servers. This functionality allows users to deploy a codec centrally
36
+
rather than the previous architecture that required a `Temporal CLI` plugin on developer workstations. This makes
37
+
it easier to secure access to any required encryption keys and simplifies the developer experience.
Copy file name to clipboardExpand all lines: grpc-proxy/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ go run grpc-proxy/worker/main.go
16
16
```
17
17
go run grpc-proxy/starter/main.go
18
18
```
19
-
5) Run the following command and see that when tctl is connected directly to Temporal it cannot display the payloads as they are encoded (compressed)
19
+
5) Run the following command and see that when Temporal CLI is connected directly to Temporal it cannot display the payloads as they are encoded (compressed)
20
20
```
21
-
tctl workflow show --wid grpcproxy_workflowID
21
+
temporal workflow show --workflow-id grpcproxy_workflowID
22
22
```
23
-
6) Run the following command to see that when tctl is connected to Temporal via the proxy it can display the payloads
23
+
6) Run the following command to see that when Temporal CLI is connected to Temporal via the proxy it can display the payloads
24
24
```
25
-
tctl --address 'localhost:8081' workflow show --wid grpcproxy_workflowID
25
+
temporal workflow show --workflow-id grpcproxy_workflowID --address 'localhost:8081'
0 commit comments