We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f6c3d commit 5b27938Copy full SHA for 5b27938
docker/start.py
@@ -319,6 +319,8 @@ def create_bare_config(logger, extra_indexer_options=None):
319
'--noIndex']
320
321
if extra_indexer_options:
322
+ if type(extra_indexer_options) is not list:
323
+ raise Exception("extra_indexer_options has to be a list")
324
indexer_options.extend(extra_indexer_options)
325
indexer = Indexer(indexer_options,
326
jar=OPENGROK_JAR,
0 commit comments