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
In the current implementation of the TESConverter, only the first executor is used when converting TES data to WRROC entities. However, a TES task can have multiple executors, which implies that the task consists of multiple steps.
Action Required
We need to determine how multiple executors should be handled when converting TES data to WRROC entities. The current approach of using only the first executor may not fully represent the task's complexity.
Proposed Solution
Consider the following options:
Create Multiple WRROC Entries: Each executor could be converted into a separate WRROC entity.
Aggregate Executors: Combine the information from all executors into a single WRROC entity, ensuring all steps are represented.
Custom Handling: Develop a custom approach to represent multiple executors in WRROC entities.
This issue will be addressed in a future PR.
Impact
Properly handling multiple executors will ensure that the converted WRROC entities accurately represent the complexity of TES tasks.
Related Code
The current implementation can be found in TESConverter.convert_to_wrroc method.
Description
In the current implementation of the
TESConverter
, only the first executor is used when converting TES data to WRROC entities. However, a TES task can have multiple executors, which implies that the task consists of multiple steps.Action Required
We need to determine how multiple executors should be handled when converting TES data to WRROC entities. The current approach of using only the first executor may not fully represent the task's complexity.
Proposed Solution
Consider the following options:
This issue will be addressed in a future PR.
Impact
Properly handling multiple executors will ensure that the converted WRROC entities accurately represent the complexity of TES tasks.
Related Code
The current implementation can be found in
TESConverter.convert_to_wrroc
method.References
The text was updated successfully, but these errors were encountered: