File tree Expand file tree Collapse file tree
docs/production-deployment/worker-deployments/serverless-workers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ APIs are experimental and may be subject to backwards-incompatible changes.
2727
2828:::
2929
30+ Serverless Workers require Temporal Service v1.31.0 or later.
31+
3032This page covers the prerequisites for running [ Serverless Workers] ( /serverless-workers ) on a self-hosted Temporal
3133Service with AWS Lambda:
3234
Original file line number Diff line number Diff line change @@ -170,8 +170,8 @@ const STEPS = [
170170const FLOW_NODES = [
171171 { label : 'Start' , sub : 'Client' } ,
172172 { label : 'Task Queue' , sub : 'No pollers' } ,
173- { label : 'Temporal' , sub : 'Invokes Lambda ' } ,
174- { label : 'Worker' , sub : 'Lambda ' } ,
173+ { label : 'Temporal' , sub : 'Invokes Worker ' } ,
174+ { label : 'Worker' , sub : 'Processing ' } ,
175175 { label : 'Done' , sub : 'Result' } ,
176176] ;
177177
@@ -449,7 +449,7 @@ export default function ServerlessWorkerDemo() {
449449 onChange = { ( v ) => updateConfig ( 'namespace' , v ) }
450450 />
451451 < ConfigField
452- label = "Lambda Function Name"
452+ label = "Function Name"
453453 value = { config . lambdaFunctionName }
454454 onChange = { handleFunctionNameChange }
455455 />
You can’t perform that action at this time.
0 commit comments