klesh opened a new pull request, #7323:
URL: https://github.com/apache/incubator-devlake/pull/7323
### Summary
In the current implementation, one can specify the `timeAfter` via the
`taskOptions` like the following:
```
[
[
{"plugin": "github", "options": { "timeAfter": "2024-04-15T15:29:43Z",
... }},
{"plugin": "jira", "options": { "timeAfter": "2023-04-15T15:29:43Z", ...
}}
]
]
```
This looks flexible but doesn't make too much sense because a
Project/Blueprint/Pipeline crunches the **SAME** time range of data from
different data sources in most cases if not all.
So, this feature is rarely used because we have `timeAfter` on the
Project/Blueprint/Pipeline level, it is easier to use.
For those who really need to collector different data sources with different
time range can could use multiple Projects/Blueprints, or Pipelines. So no
point in maintaining such a feature.
This PR remove the `timeAfter` option from the `taskOptions` for all plugin
to simply our logic and make contributors life easier.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]