Improve DataPipelineStatus model #709
Replies: 4 comments 7 replies
-
@dluc Any thoughts on this? (Please see also the example here) |
Beta Was this translation helpful? Give feedback.
-
There was also a PR about pipeline improvement by @marcominerva, but has been recently closed: #443 |
Beta Was this translation helpful? Give feedback.
-
Could you clarify the specific issues with the current pipeline status class? The suggested addition of
This would create a discrepancy between the actual state of the pipeline and its reported status, leading to potential confusion or incorrect assumptions. |
Beta Was this translation helpful? Give feedback.
-
TBH I don't remember where I got the Or is there a case when two or more properties can be |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The
DataPipelineStatus
class contains multiple properties to check the status, likeCompleted
orFailed
. A comment in the class indicates that is planed to add more status properties.kernel-memory/service/Abstractions/Models/DataPipelineStatus.cs
Lines 19 to 25 in 6d87134
How about instead of having a own
bool
property for each status, add a enum which contains all the status values, eg:If wished I could take a look into it and provide a PR.
Beta Was this translation helpful? Give feedback.
All reactions