Jeffrey Chu
Jeffrey Chu
Fix incorrect merged results, merging two commands should not create an extra **DNS** layer.
##### SUMMARY Fixes #160 ##### ISSUE TYPE - Bugfix Pull Request ##### COMPONENT NAME community.rabbitmq.rabbitmq_binding ##### ADDITIONAL INFORMATION Tested locally by running the same task twice. The second run shows...
##### SUMMARY When a binding is created, it will calculate the `properties_key` based on the `routing_key` and `arguments`: ```python # pseudo code if len(arguments) == 0 and routing_key == "":...
When enabling boolean flags such as `collector.systemd.enable-start-time-metrics`, the flag must not specify any value. Good: - `--collector.systemd.enable-start-time-metrics` Bad: - `--collector.systemd.enable-start-time-metrics=true` - `--collector.systemd.enable-start-time-metrics=True` - `--collector.systemd.enable-start-time-metrics=` To enable boolean flags, use the...
Fixes: #976 An import entry in `services/cims/src/oci_cli_incident/cims_cli_extended.py` was referring to the src/ directory, which will end up in import error, making `oci support` subcommands to fail. ```python from oci_cli import...
If oci_cli is installed via pypi, it cannot be executed correctly. ```shell $ podman run --rm -it quay.io/centos/centos:stream9 bash bash-5.1# yum install python3-pip bash-5.1# pip install oci_cli bash-5.1# oci --version...