[hermes] ariadne: python:S2208 #9
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
SonarQube reports python:S2208 in
ariadne/services/cluster_state_profiles.py. The build is green; this is a standing finding, not a failure.What is wrong
Line 5 uses a wildcard import (from .cluster_state_contract import *), which hides which names this module actually depends on. The module only uses _NODE_WORKLOAD_TOP and _PROFILE_LIMIT from the contract, plus ClusterStateSummary and SignalContext, which the dynamic all at the bottom deliberately re-exports.
Ariadne opened no pull request for it: no automated patch was possible for this finding.
Facts
ariadne/services/cluster_state_profiles.py:5)Suggested fix (not applied)
Hermes could not open a pull request for this, so the change below was not written, validated, or pushed anywhere. It is a starting point for whoever picks this up, not a reviewed patch.
ariadne/services/cluster_state_profiles.py— Replace the star import with an explicit import of the four names the module actually references: _NODE_WORKLOAD_TOP and _PROFILE_LIMIT are used in _node_profiles and the profile-limiting slices, and ClusterStateSummary and SignalContext must stay in this module's globals so the all comprehension at the bottom keeps re-exporting them. Importing them by name satisfies python:S2208 while leaving runtime behaviour unchanged.Links
/api/admin/audit/events, event typeshermes_autotriage_incidentandhermes_autotriage_diagnosis.Filed automatically by Ariadne from a Hermes Agent diagnosis (run run_f49dc3e30db04671bf9d64217177b742). Hermes has no write access to this repository; no files or infrastructure were changed.