Ceph Cluster-Wide Deduplication Logic Flaw #18
Reference in New Issue
Block a user
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?
Lines 1079-1092: The deduplication relies on identical ticket titles, but includes timestamp in description:
'timestamp': datetime.datetime.now().isoformat(), # This will differ!
If two nodes check within the same second, they create duplicate tickets because the API likely uses description hash too. Verify the API only checks title for duplicates, or remove timestamp from description for cluster-wide issues.