1178
defer pm.versionedQueuesLock.RUnlock()
1179
for _, vq := range pm.versionedQueues {
1181
>
ret = append(ret, info...)
1182
>
1183
>
// We want DescribeTaskQueue to count for task queue liveness for all loaded versioned
1184
>
// queues, and this is the most convenient place to mark liveness, since it's called by
1185
>
// LegacyDescribeTaskQueue (and also getPhysicalQueuesForAdd, but that's versioning 1
1186
>
// and will be removed soon).
1187
>
vq.MarkAlive()
1188
>
}
1189
return ret
1190
}