Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

CORTX-33787: [v0.9.0][2.0.0-880] Kafka errors UNKNOWN_TOPIC_OR_PART d… #721

Merged
merged 1 commit into from
Aug 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ha/k8s_setup/ha_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,15 +337,19 @@ def process(self):
except TypeError as type_err:
Log.error(f'HA config command failed: Type mismatch: {type_err}.\n')
sys.stderr.write(f'HA config command failed: Type mismatch: {type_err}.\n')
raise
mssawant marked this conversation as resolved.
Show resolved Hide resolved
except yaml.YAMLError as exc:
Log.error(f'HA config command failed: Invalid yaml configuration: {exc}.\n')
sys.stderr.write(f'Ha config failed. Invalid yaml configuration: {exc}.\n')
raise
except OSError as os_err:
Log.error(f'HA config command failed: OS_error: {os_err}.\n')
sys.stderr.write(f'HA Config failed. OS_error: {os_err}.\n')
raise
except Exception as c_err:
Log.error(f'HA config command failed: {c_err}.\n')
sys.stderr.write(f'HA config command failed: {c_err}.\n')
raise

def _add_cluster_component_health(self) -> None:
"""
Expand Down