Skip to content

Commit

Permalink
Scrub a few more "Feedback" instances #2304
Browse files Browse the repository at this point in the history
  • Loading branch information
edeutsch committed Nov 13, 2024
1 parent 4dcd43b commit c1e1f84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion code/ARAX/ARAXQuery/ARAX_ranker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions code/ARAX/ResponseCache/reinitialize_database.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/env python3
# Reinitialize the Message/Feedback MySQL database
# Reinitialize the ResponseCache MySQL database

import os
import sys
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion code/ARAX/ResponseCache/response_cache.py
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit c1e1f84

Please sign in to comment.