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
Hey aaubry, I think I might have found a small bug.
I have a use case where i need to serialize a Yaml string as a property of another string.
the string is the following: "defaultMetricAllow: false\r\ndefaultDimensionsAllow: true\r\nstartsWithFilters:\r\n- overlay_\r\n- descheduler_\r\nmetrics:\r\n node_cpu_usage: \r\n node_disk_read_bytes_total_rate: \r\n container_cpu_usage: \r\n pod_memory_usage: \r\n node_status: \r\n"
which in translates to:
I have a class that is wrapping this value
My expected behaviour: object should be serialized as
Value: |- defaultMetricAllow: false defaultDimensionsAllow: true etc...
Actual behaviour: object is serialized as
Value: "defaultMetricAllow: false\r\ndefaultDimensionsAllow: true\r\nstartsWithFilters:\r\n- overlay_\r\n- descheduler_\r\nmetrics:\r\n node_cpu_usage: \r\n node_disk_read_bytes_total_rate: \r\n container_cpu_usage: \r\n pod_memory_usage: \r\n node_status: \r\n"
thanks! asaf.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey aaubry,
I think I might have found a small bug.
I have a use case where i need to serialize a Yaml string as a property of another string.
the string is the following:
"defaultMetricAllow: false\r\ndefaultDimensionsAllow: true\r\nstartsWithFilters:\r\n- overlay_\r\n- descheduler_\r\nmetrics:\r\n node_cpu_usage: \r\n node_disk_read_bytes_total_rate: \r\n container_cpu_usage: \r\n pod_memory_usage: \r\n node_status: \r\n"
which in translates to:
I have a class that is wrapping this value
My expected behaviour:
object should be serialized as
Value: |-
defaultMetricAllow: false
defaultDimensionsAllow: true
etc...
Actual behaviour:
object is serialized as
Value: "defaultMetricAllow: false\r\ndefaultDimensionsAllow: true\r\nstartsWithFilters:\r\n- overlay_\r\n- descheduler_\r\nmetrics:\r\n node_cpu_usage: \r\n node_disk_read_bytes_total_rate: \r\n container_cpu_usage: \r\n pod_memory_usage: \r\n node_status: \r\n"
thanks!
asaf.
The text was updated successfully, but these errors were encountered: