Replies: 2 comments
-
Could you please make a PR for this? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Created one here: #519 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The plugins are discovered by querying files in directories. This behavior is different depending on the underlying filesystem, means:
Window/NFTS: alphanumerical
Linux/ext: "inode" order
This leads to the situation that the loading is different when you locally test with Windows and on the pipeline the tests are running on a linux agent.
This is per se a bit inconsistent, but for us it is a problem as we have a plugin which is overwriting the tracing. We enforce by the plugin-name that our plugin is loaded last, which now only works with NTFS.
The "fix" for this would be quite easy:
This would always give a sorted list back and the loading is independent of the behavior of the filesystem, which is a small change but would help us a lot.
Beta Was this translation helpful? Give feedback.
All reactions