-
Notifications
You must be signed in to change notification settings - Fork 17
IBX-9697: Added priority attribute to ibexa data collector #517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
} | ||
} | ||
|
||
usort($collectors, static fn ($a, $b) => $b['priority'] <=> $a['priority']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
usort($collectors, static fn ($a, $b) => $b['priority'] <=> $a['priority']); | |
usort($collectors, static fn (int $a, int $b): int => $b['priority'] <=> $a['priority']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apart from the comment above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wiewiurdp please cover the use case in already existing DataCollectorPassTest
.
|
Related PRs:
Description:
Added priority field to ibexa data collector