We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dcda6d0 + 01f56b7 commit ad9a4feCopy full SHA for ad9a4fe
1 file changed
synapseclient/extensions/curator/schema_management.py
@@ -136,7 +136,10 @@ async def register_jsonschema_async(
136
if fix_schema_name:
137
old_name = schema_name
138
schema_name = fix_name(schema_name)
139
- syn.logger.info(f"Changed schema name from '{old_name}' to '{schema_name}' ")
+ if old_name != schema_name:
140
+ syn.logger.info(
141
+ f"Changed schema name from '{old_name}' to '{schema_name}' "
142
+ )
143
144
with open(schema_path, "r") as f:
145
schema_body = json.load(f)
0 commit comments