Skip to content

Commit bb9c3d8

Browse files
fix: s_error message instead of value
1 parent fb91f16 commit bb9c3d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/ConfigurationSystem/private/Modificator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def __str__(self):
244244
def commit(self):
245245
resVerif = diracxVerifyConfig(self.cfgData)
246246
if not resVerif["OK"]:
247-
gLogger.warn(resVerif["Value"])
247+
gLogger.warn(resVerif["Message"])
248248
compressedData = zlib.compress(str(self.cfgData).encode(), 9)
249249
return self.rpcClient.commitNewData(compressedData)
250250

0 commit comments

Comments
 (0)