how can i switch the timezone into asia?
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 431
- Forks
- 179
- Avg merge
- 2d 9h
- Merged PRs (30d)
- 71
Description
in this temporal ui,everutime i start my workflow, the time isnt right,i have config this time zone in my code , how can i get the right zone?
config:
temporal:
address: "localhost:7233"
taskQueue: "task-queue"
timezone: "Asia/Shanghai"
if i code the zone in this func work?
func (c *Client) StartWorkflow(input workflows.TaskWorkflowInput) (client.WorkflowRun, error) {
workflowOptions := client.StartWorkflowOptions{
ID: fmt.Sprintf("%s", input.TaskID),
TaskQueue: c.config.Temporal.TaskQueue,
}
// Start the workflow
return c.client.ExecuteWorkflow(
context.Background(),
workflowOptions,
workflows.TaskWorkflow,
input,
)
}
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
No UI file or test is named. Start by checking how the Temporal UI and the shown Go StartWorkflow function obtain and display timezone information, then verify whether the Asia/Shanghai setting affects workflow times; done means the displayed workflow time matches that configured zone.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- go, typescript
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 15/100