From ce0eb15fb13634f159e1b74926e5f4f12b8424d2 Mon Sep 17 00:00:00 2001 From: Mattijs Ugen <144798+akaIDIOT@users.noreply.github.com> Date: Sat, 8 Jul 2023 17:19:15 +0200 Subject: [PATCH] Fix keystore port numbers --- 01 query_word_cloud.py | 2 +- 02 searches_time.py | 2 +- 03 hansken_facet_heatmap.py | 2 +- 04 types_in_piechart.py | 2 +- 05 unique_values_treemap_chatmessage.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/01 query_word_cloud.py b/01 query_word_cloud.py index 32f23ec..1d3a8ff 100644 --- a/01 query_word_cloud.py +++ b/01 query_word_cloud.py @@ -12,7 +12,7 @@ in_browser = 'js' in sys.modules hansken_host = '' context = connect_project(endpoint=f'http://{hansken_host}:9091/gatekeeper/', project='5ee273fd-0978-4a0a-b8b0-2af2f8479214', - keystore=f'http://{hansken_host}:9091/keystore/', + keystore=f'http://{hansken_host}:9090/keystore/', # Authentication is faked if we run in the browser, # because an authenticated session should already be present auth=SimpleNamespace() if in_browser else None, diff --git a/02 searches_time.py b/02 searches_time.py index 13d211a..5d407e3 100644 --- a/02 searches_time.py +++ b/02 searches_time.py @@ -19,7 +19,7 @@ in_browser = 'js' in sys.modules hansken_host = '' context = connect_project(endpoint=f'http://{hansken_host}:9091/gatekeeper/', project='5ee273fd-0978-4a0a-b8b0-2af2f8479214', - keystore=f'http://{hansken_host}:9091/keystore/', + keystore=f'http://{hansken_host}:9090/keystore/', # Authentication is faked if we run in the browser, # because an authenticated session should already be present auth=SimpleNamespace() if in_browser else None, diff --git a/03 hansken_facet_heatmap.py b/03 hansken_facet_heatmap.py index a729a83..d1294d6 100644 --- a/03 hansken_facet_heatmap.py +++ b/03 hansken_facet_heatmap.py @@ -21,7 +21,7 @@ in_browser = 'js' in sys.modules hansken_host = '' context = connect_project(endpoint=f'http://{hansken_host}:9091/gatekeeper/', project='5ee273fd-0978-4a0a-b8b0-2af2f8479214', - keystore=f'http://{hansken_host}:9091/keystore/', + keystore=f'http://{hansken_host}:9090/keystore/', # Authentication is faked if we run in the browser, # because an authenticated session should already be present auth=SimpleNamespace() if in_browser else None, diff --git a/04 types_in_piechart.py b/04 types_in_piechart.py index ccb7c32..5a25e60 100644 --- a/04 types_in_piechart.py +++ b/04 types_in_piechart.py @@ -15,7 +15,7 @@ in_browser = 'js' in sys.modules hansken_host = '' context = connect_project(endpoint=f'http://{hansken_host}:9091/gatekeeper/', project='5ee273fd-0978-4a0a-b8b0-2af2f8479214', - keystore=f'http://{hansken_host}:9091/keystore/', + keystore=f'http://{hansken_host}:9090/keystore/', # Authentication is faked if we run in the browser, # because an authenticated session should already be present auth=SimpleNamespace() if in_browser else None, diff --git a/05 unique_values_treemap_chatmessage.py b/05 unique_values_treemap_chatmessage.py index 8a061c0..80fe4fa 100644 --- a/05 unique_values_treemap_chatmessage.py +++ b/05 unique_values_treemap_chatmessage.py @@ -15,7 +15,7 @@ in_browser = 'js' in sys.modules hansken_host = '' context = connect_project(endpoint=f'http://{hansken_host}:9091/gatekeeper/', project='5ee273fd-0978-4a0a-b8b0-2af2f8479214', - keystore=f'http://{hansken_host}:9091/keystore/', + keystore=f'http://{hansken_host}:9090/keystore/', # Authentication is faked if we run in the browser, # because an authenticated session should already be present auth=SimpleNamespace() if in_browser else None,