You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
plugins like systemd set the switch variables like lowercase as int,
if flb_utils_bool(kv->val) returns 1 in the below code, execute*m_bool = ret will set the first byte of the integer to 1, the resulted integer will be 1<<24 on big endian systems as there are 3 bytes appeneded to the right.
else if (m->type == FLB_CONFIG_MAP_BOOL) {
m_bool = (char *) (base + m->offset);
ret = flb_utils_bool(kv->val);
if (ret == -1) {
flb_error("[config map] invalid value for boolean property '%s=%s'",
m->name, kv->val);
return -1;
}
*m_bool = ret;
}
Bug Report
Describe the bug
The rotate_wait property of the tail input plugin on system s390x is 0 by default rather than 5 as specified in the doc
Steps to reproduce the problem
sectionTo Reproduce
Start the fluent-bit:3.0.3 docker image on s390x ubuntu machine with the commands below:
Expected behavior
Screenshots
Your Environment
Server type and version: z14
Operating System and version:
Additional context
The text was updated successfully, but these errors were encountered: