Skip to content
Snippets Groups Projects
Commit f91ba554 authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'sortProps.AthenaConfiguration-20190603' into 'master'

AthenaConfiguration: Dump properties in a predictable order.

See merge request atlas/athena!23894
parents 8cd0de58 b88c98c1
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,12 @@ class ConfigurationError(RuntimeError):
_servicesToCreate=frozenset(('GeoModelSvc','TileInfoLoader'))
def printProperties(msg, c, nestLevel = 0):
for propname, propval in six.iteritems(c.getValuedProperties()):
# Iterate in sorted order.
props = c.getValuedProperties()
propnames = list(props.keys())
propnames.sort()
for propname in propnames:
propval = props[propname]
# Ignore empty lists
if propval==[]:
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment