Sergej Alikov
Sergej Alikov
collectd 5.8.1 (compiled from source in a CentOS 7 container) runs without any issues with the same config on the same Fedora 36 host for several hours now.
I've done a bit more testing - 5.12.0 built on CentOS 7 also works fine on Fedora 36. The issue only occurs with collectd 5.12.0 built on Fedora. Hope this...
@eero-t Thanks for the suggestions. It does seem like the issue might be related to threading. I did suspect the recent changes to the `write_riemann` plugin could be the cause,...
CentOS 7 riemann client version is `1.6.1-4.el7`. In Fedora 36 its `1.10.5-3.fc36`.
@eero-t Removing the `if RCC_VERSION_NUMBER` blocks from `write_riemann.c` appears to fix the issue for Fedora builds.
@eero-t After I remove just that block the issue is still present.
@eero-t It still segfaults and sends incomplete events with those two blocks removed.
This might be caused by the quarantine attribute being set on the app. It was the cause of the same error for me with 0.9.3. To remove the attribute execute...
This one would be really nice to have. My use case: ``` workflow: rules: ... - if: $CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+/ variables: IS_TAGGED_RELEASE: "true" publish: rules: - if: $IS_TAGGED_RELEASE ``` Thank...