diff options
author | John Nduli | 2024-06-13 18:21:23 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-06-14 12:04:49 +0300 |
commit | 74b16cf9493f995a0a075ec7291d32203696c5f4 (patch) | |
tree | 0493e0708022c9f390d56d3b5a5325aa2e6f7b13 /scripts | |
parent | d4b00115b0b970b16af56f63b06cb20827695659 (diff) | |
download | genenetwork3-74b16cf9493f995a0a075ec7291d32203696c5f4.tar.gz |
fix: fix incorrect parameters in index_query function
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/index-genenetwork | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/index-genenetwork b/scripts/index-genenetwork index cccbe68..e0f6d81 100755 --- a/scripts/index-genenetwork +++ b/scripts/index-genenetwork @@ -421,7 +421,7 @@ def index_query(index_function: Callable, query: SQLQuery, except MySQLdb._exceptions.OperationalError: logging.warning("Reopening connection to recovering from SQL operational error", exc_info=True) - index_query(index_function, query, xapian_build_directory, sql_uri, i) + index_query(index_function, query, xapian_build_directory, sql_uri, sparql_uri, i) @contextlib.contextmanager |