# WorkflowTaskTimedOut after WorkflowTaskStarted

**URL:** https://community.temporal.io/t/workflowtasktimedout-after-workflowtaskstarted/7114
**Category:** Community Support
**Created:** [February 1, 2023, 4:05am UTC](https://community.temporal.io/t/workflowtasktimedout-after-workflowtaskstarted/7114 "2023-02-01T04:05:43Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![mksf](https://avatars.discourse-cdn.com/v4/letter/m/ecd19e/32.png) [@mksf](https://community.temporal.io/u/mksf)
#### Post date: [February 1, 2023, 4:05am UTC](https://community.temporal.io/t/workflowtasktimedout-after-workflowtaskstarted/7114/1 "2023-02-01T04:05:43Z")

</div>

I’m testing with Temporal and occasionally running into this issue where

WorkflowTaskStarted is followed by no progress followed by WorkflowTaskTimedOut (30s timeout).

My worker options are just the following with 25 workers (Go)

```auto
		MaxConcurrentActivityTaskPollers: 5,

```

 ![image](https://us1.discourse-cdn.com/flex016/uploads/temporal/original/2X/9/9c6f136f658c30ece1ececd56e0f9bb44ab5e24a.jpeg)

Not quite sure how to proceed from here, any guidance is appreciated.

---

<div class="post-metadata">

### Author: ![tihomir](https://sea2.discourse-cdn.com/flex016/user_avatar/community.temporal.io/tihomir/32/6580_2.png) [@tihomir](https://community.temporal.io/u/tihomir)
#### Post date: [February 1, 2023, 5:27am UTC](https://community.temporal.io/t/workflowtasktimedout-after-workflowtaskstarted/7114/2 "2023-02-01T05:27:04Z")

</div>

If you expand event 10 can you share the Timeout Type?  
In case its `ScheduleToStart` it could be caused by worker restart that happened during your execution.  
If its “StartToClose” typically means your workflow worker was not able to respond with workflow task completion within the set workflow task timeout. Service then places this workflow task back on the task queue and it seems then it was able to complete (events 11, 12, 13).

How many worker processes do you have deployed? Check the identity (worker identity) property on events 9 and 12, see if they are different.  
Do you have SDK metrics enabled? Would be good to look at your workflow and activity tasks schedule to start latencies. Let me know and I’ll add queries to look at.

---

<div class="post-metadata">

### Author: ![mksf](https://avatars.discourse-cdn.com/v4/letter/m/ecd19e/32.png) [@mksf](https://community.temporal.io/u/mksf)
#### Post date: [February 1, 2023, 7:21pm UTC](https://community.temporal.io/t/workflowtasktimedout-after-workflowtaskstarted/7114/3 "2023-02-01T19:21:04Z")

</div>

Thanks for responding - on the first point it was a `StartToClose` timeout.

Sorry, where do I check worker identity?

And I haven’t enabled metrics yet but I’ll give that a go soon.
