We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With the introduction of #238 I introduced a non-deterministic behavior:
If multiple pipelines in the same directory have the same priority, the order in which they are applied is random. This is due to the usage of path.glob() which is non-deterministic https://stackoverflow.com/questions/6773584/how-are-glob-globs-return-values-ordered
path.glob()
The PySigma documentation specifies that Pipelines with the same priority are applied in the order they were provided. https://sigmahq-pysigma.readthedocs.io/en/latest/Processing_Pipelines.html
Pipelines with the same priority are applied in the order they were provided.
In this case, the applied order should, I think, be sorting by file name.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the introduction of #238 I introduced a non-deterministic behavior:
If multiple pipelines in the same directory have the same priority, the order in which they are applied is random. This is due to the usage of
path.glob()
which is non-deterministic https://stackoverflow.com/questions/6773584/how-are-glob-globs-return-values-orderedThe PySigma documentation specifies that
Pipelines with the same priority are applied in the order they were provided.
https://sigmahq-pysigma.readthedocs.io/en/latest/Processing_Pipelines.htmlIn this case, the applied order should, I think, be sorting by file name.
The text was updated successfully, but these errors were encountered: