diff --git a/code/ARAX/ARAXQuery/ARAX_ranker.py b/code/ARAX/ARAXQuery/ARAX_ranker.py index ac04e6e43..be8e64c19 100644 --- a/code/ARAX/ARAXQuery/ARAX_ranker.py +++ b/code/ARAX/ARAXQuery/ARAX_ranker.py @@ -828,7 +828,7 @@ def main(): import argparse argparser = argparse.ArgumentParser(description='Ranker system') - argparser.add_argument('--local', action='store_true', help='If set, use local RTXFeedback database to fetch messages') + argparser.add_argument('--local', action='store_true', help='If set, use local ResponseCache database to fetch messages') params = argparser.parse_args() # --- Create a response object diff --git a/code/ARAX/ResponseCache/reinitialize_database.py b/code/ARAX/ResponseCache/reinitialize_database.py index 9e0b41b0d..e27b48859 100644 --- a/code/ARAX/ResponseCache/reinitialize_database.py +++ b/code/ARAX/ResponseCache/reinitialize_database.py @@ -1,5 +1,5 @@ #!/bin/env python3 -# Reinitialize the Message/Feedback MySQL database +# Reinitialize the ResponseCache MySQL database import os import sys @@ -13,11 +13,11 @@ sys.exit(0) if sys.argv[1] != 'yes': - print("If you really want to delete and re-create the feedback/Message database, use:") + print("If you really want to delete and re-create the ResponseCache database, use:") print(" python reinitialize_database.py yes") sys.exit(0) -#### Create an RTX Feedback management object +#### Create an RTX ResponseCache management object response_cache = ResponseCache() #### Purge and re-create the database diff --git a/code/ARAX/ResponseCache/response_cache.py b/code/ARAX/ResponseCache/response_cache.py index 33f4a9c16..4a48709f2 100644 --- a/code/ARAX/ResponseCache/response_cache.py +++ b/code/ARAX/ResponseCache/response_cache.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -# Database definition and RTXFeedback class +# Database definition and ResponseCache class import sys def eprint(*args, **kwargs): print(*args, file=sys.stderr, **kwargs)