Skip to content
Snippets Groups Projects
Commit 1df04a24 authored by Ihrig, Arvid Conrad (ari)'s avatar Ihrig, Arvid Conrad (ari)
Browse files

section-index arguments for addArrayValues were ignored, leading to incorrect calls

parent 4653b74f
No related branches found
No related tags found
No related merge requests found
......@@ -500,9 +500,9 @@ class ActiveBackend(object):
cachingLevel = dataManager.cachingLevel
if cachingLevel == CachingLevel.Forward or cachingLevel == CachingLevel.ForwardAndCache:
if self.superBackend:
self.superBackend.addArrayValues(metaName, values, gIndex)
self.superBackend.addArrayValues(metaName, values, gIndex=gIndex)
if cachingLevel == CachingLevel.ForwardAndCache or cachingLevel == CachingLevel.Cache or cachingLevel == CachingLevel.PreOpenedCache:
dataManager.superSectionManager.addArrayValues(dataManager.metaInfo, values, gIndex)
dataManager.superSectionManager.addArrayValues(dataManager.metaInfo, values, gIndex=gIndex)
def convertScalarStringValue(self, metaName, strValue):
"""converts a scalar string value of the given meta info to a python value"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment