From 891b510db8987ad198722f5fd036c5afcca17120 Mon Sep 17 00:00:00 2001 From: M Fairchild <2048552+mfairch@users.noreply.github.com> Date: Mon, 22 Mar 2021 10:40:52 -0700 Subject: [PATCH] Rename Elastic Search to Elasticsearch I noticed in the view the spelling is incorrect so this PR fixes that. The proper spelling has no space and the "s" is not capitalized. See https://www.elastic.co/legal/trademarks for proper spelling and usage. --- manageServices/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manageServices/views.py b/manageServices/views.py index ddca457b6..5dc0f1309 100755 --- a/manageServices/views.py +++ b/manageServices/views.py @@ -276,7 +276,7 @@ def manageApplications(request): else: rInstalled = 'Not-Installed' - elasticSearch = {'image': '/static/manageServices/images/elastic-search.png', 'name': 'Elastic Search', + elasticSearch = {'image': '/static/manageServices/images/elastic-search.png', 'name': 'Elasticsearch', 'installed': installed} redis = {'image': '/static/manageServices/images/redis.png', 'name': 'Redis', 'installed': rInstalled} @@ -328,4 +328,4 @@ def removeInstall(request): logging.CyberCPLogFileWriter.writeToFile(str(msg)) data_ret = {'status': 0, 'error_message': str(msg)} json_data = json.dumps(data_ret) - return HttpResponse(json_data) \ No newline at end of file + return HttpResponse(json_data)