Add registry_feedback to hash exclude list
When syncing feedback from server, the registry_feedback field was being saved to config but not excluded from hash computation, causing tools to appear as "modified" instead of showing their actual status. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
23c42faf75
commit
d7d0019472
|
|
@ -29,7 +29,7 @@ def compute_config_hash(config: Dict[str, Any], exclude_fields: Optional[list] =
|
|||
# Exclude registry metadata and publication metadata from hash
|
||||
# These fields are added during publish but aren't part of tool content
|
||||
exclude_fields = [
|
||||
'published_hash', 'registry_hash', 'registry_status', # registry metadata
|
||||
'published_hash', 'registry_hash', 'registry_status', 'registry_feedback', # registry metadata
|
||||
'version', 'tags', # publication metadata (added by publish dialog)
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue