You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice the incorrect naming of the includeL and excludeL variables in DocumentDefinitionHelper (here). The names should be flip-flopped between the two methods:
defgetExcluded(self, collectionName):
"""For input collection, return the list of excluded schema identifiers."""includeL= []
try:
includeL= [tS.upper() fortSinself.__cfgD["document_collection_content_filters"][collectionName]["EXCLUDE"]]
exceptExceptionase:
logger.debug("Collection %s failing with %s", collectionName, str(e))
returnincludeLdefgetIncluded(self, collectionName):
"""For input collection, return the list of included schema identifiers."""excludeL= []
try:
excludeL= [tS.upper() fortSinself.__cfgD["document_collection_content_filters"][collectionName]["INCLUDE"]]
exceptExceptionase:
logger.debug("Collection %s failing with %s", collectionName, str(e))
returnexcludeL
The text was updated successfully, but these errors were encountered:
Notice the incorrect naming of the
includeL
andexcludeL
variables inDocumentDefinitionHelper
(here). The names should be flip-flopped between the two methods:The text was updated successfully, but these errors were encountered: